From fb0480216312cbb3d255dadf1a30d9cb1e479261 Mon Sep 17 00:00:00 2001 From: Tyler MacDonald Date: Mon, 28 Aug 2023 18:31:04 -0400 Subject: [PATCH] Add support for Google Takeout Location History (#1160) * Add support for Google Takeout Location History This adds support for parsing the location history provided by Google Takeout. This makes it possible to convert a month's, year's, or your entire location history at once instead of having to export one day's history at a time on Google Maps. There is documentation in the `xmldoc` folder with some examples. It works great, but there are one, possibly two, other additions I'd like to make in following diffs: 1. Add the ability to select date ranges. For example, I went on a road trip that started in the last week of February, but right now I can only select tracks at the resolution of a whole month. 2. Add support for the higher-resolution "roadSegment" blocks in newer "activitySegment" blocks. This will have to be optional as you have to query the Google Maps API to get lat/long, which costs money. However, if you're willing to pay for it, you can get great detail out of it. They look like this: ``` "roadSegment": [{ "placeId": "ChIJBdXmuuWaK4gRoiClERhZcy8", "duration": "76s" }, { "placeId": "ChIJ4ekNlOWaK4gRxu-moMRFo60", "duration": "58s" }, { "placeId": "ChIJ10qEheWaK4gRQ1T24wEuuN4", "duration": "58s" }, { "placeId": "ChIJe7NWfu-aK4gRFHBB6P0PMe4", "duration": "58s" [...] ``` * rename variable * this TODO is done * now builds on focal, fix documentation * patch -p2 < ~/testo.log * use `&&` instead of `and` for old compilers * don't leak objects when we skip events at exact lat/lon 0/0 * use a reference (even though the compiler would have optimized that away) * rename to googletakeout * fix docs * Address code review requests * add `googletakeout.h` to HEADERS * convert most `#define`s to static members * don't pollute global namespace * rename logging functions * convert some methods to static functions for clang-tidy * `title_case` loop by reference instead of by index (clang-tidy) * better use of debugging levels * drop dead simplifiedRawPath code for now * drop empty tracks * default constructor for GoogleTakeoutInputStream * add some tests that check the content of the data Also, I found some unofficial documentation about the location history format and added that (thanks @CarlosBergillos !) * apply @tsteven4 's patch. thank you!! * add license * fix logging * As I assigned the correct license to my code, I am skeptical that this makes a difference, but give Robert co-copyright. * make the test more boring * rm xml_slice * revert constructor change from @tsteven4 's patch * apply @tsteven4 's latest constructor * apply @tsteven4 's latest patch -- `cmake --build . --target check` passes --------- Co-authored-by: tsteven4 <13596209+tsteven4@users.noreply.github.com> --- .gitignore | 6 +- CMakeLists.txt | 3 + googletakeout.cc | 436 + googletakeout.h | 126 + reference/format0.txt | 1 + reference/format1.txt | 1 + reference/format2.txt | 1 + reference/format3.txt | 2 + reference/googletakeout/2013/2013_JUNE.json | 11811 ++++++++++++++++++ reference/googletakeout/2013/2013_MAY.json | 8385 +++++++++++++ reference/googletakeout/googletakeout.gpx | 2770 ++++ reference/help.txt | 1 + testo | 7 +- testo.d/googletakeout.test | 8 + vecs.cc | 9 + xmldoc/formats/googletakeout.xml | 69 + 16 files changed, 23634 insertions(+), 2 deletions(-) create mode 100644 googletakeout.cc create mode 100644 googletakeout.h create mode 100644 reference/googletakeout/2013/2013_JUNE.json create mode 100644 reference/googletakeout/2013/2013_MAY.json create mode 100644 reference/googletakeout/googletakeout.gpx create mode 100644 testo.d/googletakeout.test create mode 100644 xmldoc/formats/googletakeout.xml diff --git a/.gitignore b/.gitignore index 3ec3a113c..8da97ca49 100644 --- a/.gitignore +++ b/.gitignore @@ -10,11 +10,12 @@ /debug/ /gpsbabel /gpsbabel-debug -/gpsbabel_coverage.xml /gpsbabel.exe /gpsbabel.fo /gpsbabel.html /gpsbabel.pdf +/gpsbabel_autogen/ +/gpsbabel_coverage.xml /Makefile .qmake.cache .qmake.stash @@ -26,11 +27,13 @@ *.a .ninja_deps .ninja_log +.qt build.ninja rules.ninja cmake_install.cmake CMakeCache.txt CMakeFiles/ +CTestTestfile.cmake /GPSBabel[0-9]*.[0-9]*.[0-9]*/ /GPSBabel[0-9]*.[0-9]*.[0-9]*.tar.bz2 /makelinuxdist.sh @@ -47,3 +50,4 @@ CMakeFiles/ /gbversion.h /qrc_gpsbabel.cpp /.vscode/ +Testing diff --git a/CMakeLists.txt b/CMakeLists.txt index 465b00573..28d131c5c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -87,6 +87,7 @@ set(ALL_FMTS ${MINIMAL_FMTS} geocache.cc geojson.cc globalsat_sport.cc + googletakeout.cc gtm.cc gtrnctr.cc html.cc @@ -213,6 +214,7 @@ set(HEADERS geojson.h globalsat_sport.h geo.h + googletakeout.h gpx.h grtcirc.h gtrnctr.h @@ -380,6 +382,7 @@ set(TESTS geojson geo globalsat_sport + googletakeout gpsdrive gpx grapheme diff --git a/googletakeout.cc b/googletakeout.cc new file mode 100644 index 000000000..d057ca502 --- /dev/null +++ b/googletakeout.cc @@ -0,0 +1,436 @@ +/* + Support reading Google Takeout Timeline Location History JSON format. + + Copyright (C) 2023 Tyler MacDonald, tyler@macdonald.name + Copyright (C) 2023 Robert Lipe, robertlipe+source@gpsbabel.org + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + USA. +*/ + +#include "googletakeout.h" + +#include // for operator==, QChar +#include // for QDateTime +#include // for QDebug +#include // for QDir +#include // for QFileInfo +#include // for QFileInfoList +#include // for operator|, QIODevice +#include // for QJsonArray, QJsonArray::const_iterator +#include // for QJsonDocument +#include // for QJsonObject, QJsonObject::const_iterator +#include // for QJsonParseError, QJsonParseError::NoError +#include // for QJsonValueRef +#include // for ISODate, QIODeviceBase::ReadOnly, QIODeviceBase::Text + +#include "src/core/datetime.h" // for DateTime +#include "src/core/file.h" // for File +#include "src/core/logging.h" // for Debug, FatalMsg, Warning + +#define MYNAME "Google Takeout" +#define TIMELINE_OBJECTS "timelineObjects" + +static const QList takeout_month_names{ + "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", + "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER" +}; + +static inline void takeout_fatal(const QString& message) { + fatal(FatalMsg() << MYNAME << ": " << message); +} + +static inline void takeout_warning(const QString& message) { + Warning() << MYNAME << ": " << message; +} + +/* create a waypoint from late7/lone7 and optional metadata */ +static Waypoint* takeout_waypoint( + int lat_e7, + int lon_e7, + const QString* shortname, + const QString* description, + const QString* start_str +) +{ + Waypoint* waypoint = new Waypoint(); + waypoint->latitude = lat_e7 / 1e7; + waypoint->longitude = lon_e7 / 1e7; + if (shortname && (*shortname).length() > 0) { + waypoint->shortname = *shortname; + } + if (description && (*description).length() > 0) { + waypoint->description = *description; + } + if (start_str && (*start_str).length() > 0) { + gpsbabel::DateTime start = QDateTime::fromString(*start_str, Qt::ISODate); + waypoint->SetCreationTime(start); + } + return waypoint; +} + +static bool track_maybe_add_wpt(route_head* route, Waypoint* waypoint) { + if (waypoint->latitude == 0 && waypoint->longitude == 0) { + if (global_opts.debug_level >= 2) { + Debug(2) << "Track " << route->rte_name << "@" << + waypoint->creation_time.toPrettyString() << + ": Dropping point with no lat/long"; + } + delete waypoint; // as we're dropping it, gpsbabel won't clean it up later + return false; + } + track_add_wpt(route, waypoint); + return true; +} + +static QList readJson( + const QString& source) +{ + if (global_opts.debug_level >= 2) { + Debug(2) << "Reading from JSON " << source; + } + auto* ifd = new gpsbabel::File(source); + ifd->open(QIODevice::ReadOnly | QIODevice::Text); + const QString content = ifd->readAll(); + QJsonParseError error{}; + const QJsonDocument doc = QJsonDocument::fromJson(content.toUtf8(), &error); + if (error.error != QJsonParseError::NoError) { + takeout_fatal( + QString("JSON parse error in ") + ifd->fileName() + ": " + + error.errorString() + ); + } + + const QJsonObject root = doc.object(); + const QJsonValue timelineObjectsIn = root.value(TIMELINE_OBJECTS); + if (timelineObjectsIn.isNull()) { + takeout_fatal( + ifd->fileName() + " is missing required \"" + + TIMELINE_OBJECTS + "\" section" + ); + } + + const QJsonArray timelineJson = timelineObjectsIn.toArray(); + QList timeline; + for (QJsonValue&& val : timelineJson) { + if (val.isObject()) { + timeline.append(val.toObject()); + } else { + takeout_fatal(ifd->fileName() + " has non-object in timelineObjects"); + } + } + ifd->close(); + delete ifd; + if (timeline.isEmpty()) { + takeout_warning(QString(source) + " does not contain any timelineObjects"); + } + if (global_opts.debug_level >= 2) { + Debug(2) << "Saw " << timeline.size() << " timelineObjects in " << source; + } + return timeline; +} + +static QList readDir( + const QString& source) +{ + if (global_opts.debug_level >= 2) { + Debug(2) << "Reading from folder " << source; + } + const QDir dir{source}; + const QFileInfo sourceInfo{source}; + const QString baseName = sourceInfo.fileName(); + QList paths; + /* If a directory's name is a 4-digit number, this is a "year" folder + * and we will look for YYYY_MONTH.json files. + * Otherwise, this is the all-time folder that _contains_ the month + * folders + */ + if (baseName.length() == 4 && baseName.toInt() > 0) { + for (auto&& month : takeout_month_names) { + const QString path = source + "/" + baseName + "_" + month + ".json"; + const QFileInfo info{path}; + if (info.exists()) { + if (global_opts.debug_level >= 3) { + Debug(3) << "Adding file " << path; + } + paths.append(path); + } else { + if (global_opts.debug_level >= 4) { + Debug(4) << "Did not find " << path; + } + } + } + } else { + for (auto&& entry : dir.entryInfoList()) { + const QString path = dir.filePath(entry.fileName()); + const QString name = entry.fileName(); + if (name == "." || name == "..") { + continue; + } + if (name.length() == 4 && name.toInt() > 0) { + if (global_opts.debug_level >= 3) { + Debug(3) << "Adding directory " << path; + } + paths.append(path); + } else { + if (entry.isDir()) { + takeout_warning(QString("Malformed folder name ") + path); + } + } + } + } + if (global_opts.debug_level >= 2) { + Debug(2) << "Saw " << paths.size() << " paths in " << source; + } + return paths; +} + +void +GoogleTakeoutFormat::title_case(QString& title) +{ + bool new_word = true; + for (auto& chr : title) { + if (chr == '_' || chr == ' ') { + new_word = true; + if (chr == '_') { + chr = ' '; + } + } else if (new_word) { + new_word = false; + chr = chr.toUpper(); + } else { + chr = chr.toLower(); + } + } +} + +void +GoogleTakeoutFormat::rd_init(const QString& fname) { + if (global_opts.debug_level >= 4) { + Debug(4) << "rd_init(" << fname << ")"; + } + inputStream = GoogleTakeoutInputStream(fname); +} + +void +GoogleTakeoutFormat::read() +{ + int items = 0; + int points = 0; + int place_visits = 0; + int activity_segments = 0; + QJsonValue iterator = inputStream.next(); + + for (; !iterator.isNull(); iterator = inputStream.next()) { + ++ items; + /* + * A timelineObject is stored in a single-element dictionary. + * The key will be either a "placeVisit" (waypoint) or + * "activitySegment" (movement), and the value is another dictionary + * containing the timelineObject's details. + * + */ + const QJsonObject timelineObjectContainer = iterator.toObject(); + int len = timelineObjectContainer.size(); + if (len != 1) { + takeout_fatal( + QString("expected a single key dict, got ") + QString::number(len) + + " keys" + ); + } + const QJsonObject::const_iterator timelineObjectIterator = + timelineObjectContainer.constBegin(); + const QString& timelineObjectType = timelineObjectIterator.key(); + const QJsonObject& timelineObjectDetail = + timelineObjectIterator.value().toObject(); + if (timelineObjectType == PLACE_VISIT) { + add_place_visit(timelineObjectDetail); + ++ place_visits; + ++ points; + } else if (timelineObjectType == ACTIVITY_SEGMENT) { + points += add_activity_segment(timelineObjectDetail); + ++ activity_segments; + } else { + takeout_fatal( + QString("unknown timeline object type \"") + timelineObjectType + + "\"" + ); + } + } + if (global_opts.debug_level >= 1) { + Debug(1) << MYNAME << ": Processed " << items << " items: " << + place_visits << " " << PLACE_VISIT << ", " << activity_segments << + " " << ACTIVITY_SEGMENT << " (" << points << " points total)"; + } +} + +void +GoogleTakeoutFormat::add_place_visit(const QJsonObject& placeVisit) +{ + /* + * placeVisits: + * one lat/long, will always contain "location.address", may also + * contain "location.name" + * "duration" contains start and end times + * + * TODO: capture end time/duration + * some placeVisits have a simplifiedRawPath. + * TODO: do something with simplifiedRawPath + */ + const QJsonObject& loc = placeVisit[LOCATION].toObject(); + const QString address = loc[ADDRESS].toString(); + const QString timestamp = placeVisit[DURATION][START_TIMESTAMP].toString(); + Waypoint* waypoint; + + if (loc.contains(NAME) && loc[NAME].toString().length() > 0) { + QString name = loc[NAME].toString(); + waypoint = takeout_waypoint( + loc[LOCATION_LATE7].toInt(), + loc[LOCATION_LONE7].toInt(), + name.length() > 0 ? &name : nullptr, + &address, + ×tamp + ); + } else { + waypoint = takeout_waypoint( + loc[LOCATION_LATE7].toInt(), + loc[LOCATION_LONE7].toInt(), + nullptr, + &address, + ×tamp + ); + } + + waypt_add(waypoint); +} + +/* add an "activitySegment" (track) + * an activitySegment has at least two points (a start and an end) and + * may have waypoints in-between. + * + * returns the total number of points added + */ +int +GoogleTakeoutFormat::add_activity_segment(const QJsonObject& activitySegment) +{ + /* + * activitySegment: + * one startLocation and one endLocation. there are also waypoints + * in the waypointPath array. the "distance" field appears to be in + * metres. There is a "duration" section with "startTimestamp" and + * "endTimestamp" with "distance" and "duration", "speed" can be + * inferred. + * "activityType" is stuff like "IN_PASSENGER_VEHICLE", "WALKING", etc + * + * some activitySegments also include a "parkingEvent". + * TODO: add parkingEvent as its own waypoint + * some activitySegments also have a simplifiedRawPath + * TODO: do something with simplifiedRawPath + */ + int n_points = 0; + Waypoint* waypoint = nullptr; + auto* route = new route_head; + const QJsonObject startLoc = activitySegment[START_LOCATION].toObject(); + const QJsonObject endLoc = activitySegment[END_LOCATION].toObject(); + QString activityType = activitySegment[ACTIVITY_TYPE].toString(); + title_case(activityType); + route->rte_name = activityType; + track_add_head(route); + QString timestamp; + timestamp = activitySegment[DURATION][START_TIMESTAMP].toString(); + waypoint = takeout_waypoint( + startLoc[LOCATION_LATE7].toInt(), + startLoc[LOCATION_LONE7].toInt(), + nullptr, nullptr, + ×tamp + ); + n_points += track_maybe_add_wpt(route, waypoint); + /* activitySegments give us three sets of waypoints. + * 1. "waypoints" dict + * This is available on all tracks, but only includes the + * lat/lon - no timestamp. + * 2. "simplifiedRawPath" dict + * these all have timestamps which provides richer metadata. + * This is not available on all tracks. + * 3. An incredibly detailed "roadSegment" list that includes a + * bunch of google placeId's and durations, but no lat/long. + * To get the lat/lon you need to query the Google Places API + * https://maps.googleapis.com/maps/api/place/details/json with: + * placeid=placeId + * key=apiKey + * and then extract "lat" and "lng" from result.geometry.location + * This also costs $17USD per 1,000 location requests + * TODO: add an option to query places API, and an option to count + * how many Google Places requests it would take to process a file + * + * For now, we use (1) + */ + const QJsonArray points = + activitySegment[WAYPOINT_PATH][WAYPOINTS].toArray(); + for (const auto&& pointRef: points) { + const QJsonObject point = pointRef.toObject(); + waypoint = takeout_waypoint( + point[LATE7].toInt(), + point[LONE7].toInt(), + nullptr, + nullptr, + nullptr + ); + n_points += track_maybe_add_wpt(route, waypoint); + } + timestamp = activitySegment[DURATION][END_TIMESTAMP].toString(); + waypoint = takeout_waypoint( + endLoc[LOCATION_LATE7].toInt(), + endLoc[LOCATION_LONE7].toInt(), + nullptr, nullptr, ×tamp + ); + n_points += track_maybe_add_wpt(route, waypoint); + if (!n_points) { + if (global_opts.debug_level >= 2) { + Debug(2) << "Track " << route->rte_name << + ": Dropping track with no waypoints"; + } + track_del_head(route); + } + return n_points; +} + +void GoogleTakeoutInputStream::loadSource(const QString& source) { + const QFileInfo info{source}; + if (info.isDir()) { + sources += readDir(source); + } else if (info.exists()) { + timelineObjects.append(readJson(source)); + } else { + takeout_fatal(source + ": No such file or directory"); + } +} + +QJsonValue GoogleTakeoutInputStream::next() { + if (!timelineObjects.isEmpty()) { + QJsonValue nextObject = timelineObjects.first(); + timelineObjects.removeFirst(); + return nextObject; + } + + if (!sources.isEmpty()) { + const QString filename = sources.first(); + sources.removeFirst(); + loadSource(filename); + return next(); + } + + return QJsonValue(); +} diff --git a/googletakeout.h b/googletakeout.h new file mode 100644 index 000000000..6bf54b17a --- /dev/null +++ b/googletakeout.h @@ -0,0 +1,126 @@ +/* + Support reading Google Takeout Timeline Location History JSON format. + + Copyright (C) 2023 Tyler MacDonald, tyler@macdonald.name + Copyright (C) 2023 Robert Lipe, robertlipe+source@gpsbabel.org + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, + USA. +*/ +#ifndef _GOOGLETAKEOUT_H +#define _GOOGLETAKEOUT_H + +#include // for QJsonObject +#include // for QJsonValue +#include // for QList +#include // for QString +#include // for qMakeStringPrivate, QStringLiteral +#include // for QVector + +#include "defs.h" +#include "format.h" // for Format + +/* + * Reads Location History JSON files and return each timelineObject + * that should be processed. + * + * TODO: Allow date ranges + */ +class GoogleTakeoutInputStream +{ +public: + /* Special Member Functions */ + GoogleTakeoutInputStream() = default; + GoogleTakeoutInputStream(const QString& source) : sources({source}) {}; + + /* Member Functions */ + + // Returns the next timelineObject, or a null QJsonValue if we're at the end + QJsonValue next(); + +private: + /* Member Functions */ + + void loadSource(const QString& source); + + /* Data Members */ + + QList sources; + QList timelineObjects; +}; + +/* Read-only Google Timeline Location History gpsbabel Format */ +class GoogleTakeoutFormat : public Format +{ +public: + /* Member functions */ + QVector* get_args() override + { + return &googletakeout_args; + } + + ff_type get_type() const override + { + return ff_type_file; + } + + QVector get_cap() const override + { + return { ff_cap_read, ff_cap_read, ff_cap_none }; + } + + void rd_init(const QString& fname) override; + void read() override; + +private: + /* Constants */ + + const QString PLACE_VISIT = QStringLiteral("placeVisit"); + const QString ACTIVITY_SEGMENT = QStringLiteral("activitySegment"); + const QString ACTIVITY_TYPE = QStringLiteral("activityType"); + const QString LOCATION = QStringLiteral("location"); + const QString LOCATION_LATE7 = QStringLiteral("latitudeE7"); + const QString LOCATION_LONE7 = QStringLiteral("longitudeE7"); + const QString NAME = QStringLiteral("name"); + const QString ADDRESS = QStringLiteral("address"); + const QString DURATION = QStringLiteral("duration"); + const QString START_TIMESTAMP = QStringLiteral("startTimestamp"); + const QString START_LOCATION = QStringLiteral("startLocation"); + const QString END_TIMESTAMP = QStringLiteral("endTimestamp"); + const QString END_LOCATION = QStringLiteral("endLocation"); + const QString TIMESTAMP = QStringLiteral("timestamp"); + const QString SIMPLE_PATH = QStringLiteral("simplifiedRawPath"); + const QString POINTS = QStringLiteral("points"); + const QString WAYPOINT_PATH = QStringLiteral("waypointPath"); + const QString WAYPOINTS = QStringLiteral("waypoints"); + // for some reason that probably only a former Google engineer knows,); + // we use = QStringLiteral("latE7"/"lngE7" here instead of "latitudeE7"/"longitudeE7".); + // +10 points for brevity, but -100 points for inconsistency.); + const QString LATE7 = QStringLiteral("latE7"); + const QString LONE7 = QStringLiteral("lngE7"); + + /* Member Functions */ + + void add_place_visit(const QJsonObject& placeVisit); + int add_activity_segment(const QJsonObject& activitySegment); + static void title_case(QString& title); + + /* Data Members */ + + GoogleTakeoutInputStream inputStream; + QVector googletakeout_args; +}; + +#endif /* _GOOGLETAKEOUT_H */ diff --git a/reference/format0.txt b/reference/format0.txt index c027f1fa4..8019ce1c6 100644 --- a/reference/format0.txt +++ b/reference/format0.txt @@ -20,6 +20,7 @@ dg-100 GlobalSat DG-100/BT-335 Download dg-200 GlobalSat DG-200 Download globalsat GlobalSat GH625XT GPS training watch kml kml Google Earth (Keyhole) Markup Language +googletakeout json Google Takeout Location History land_air_sea txt GPS Tracking Key Pro text gtm gtm GPS TrackMaker arc txt GPSBabel arc filter file diff --git a/reference/format1.txt b/reference/format1.txt index 88b83cd13..72f9843ca 100644 --- a/reference/format1.txt +++ b/reference/format1.txt @@ -25,6 +25,7 @@ internal dg-200-bin GlobalSat DG-200 Binary File serial dg-200 GlobalSat DG-200 Download serial globalsat GlobalSat GH625XT GPS training watch file kml kml Google Earth (Keyhole) Markup Language +file googletakeout json Google Takeout Location History file land_air_sea txt GPS Tracking Key Pro text file gtm gtm GPS TrackMaker file arc txt GPSBabel arc filter file diff --git a/reference/format2.txt b/reference/format2.txt index 1e9944c12..0054e5347 100644 --- a/reference/format2.txt +++ b/reference/format2.txt @@ -25,6 +25,7 @@ internal r-r--- dg-200-bin GlobalSat DG-200 Binary File serial r-r--- dg-200 GlobalSat DG-200 Download serial --r--- globalsat GlobalSat GH625XT GPS training watch file rwrwrw kml kml Google Earth (Keyhole) Markup Language +file r-r--- googletakeout json Google Takeout Location History file --rw-- land_air_sea txt GPS Tracking Key Pro text file rwrwrw gtm gtm GPS TrackMaker file rw---- arc txt GPSBabel arc filter file diff --git a/reference/format3.txt b/reference/format3.txt index 427a4bc0e..e4c5e4903 100644 --- a/reference/format3.txt +++ b/reference/format3.txt @@ -362,6 +362,8 @@ option kml rotate_colors Rotate colors for tracks and routes (default automatic) option kml prec Precision of coordinates, number of decimals integer 6 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_kml.html#fmt_kml_o_prec +file r-r--- googletakeout json Google Takeout Location History googletakeout + https://www.gpsbabel.org/WEB_DOC_DIR/fmt_googletakeout.html file --rw-- land_air_sea txt GPS Tracking Key Pro text xcsv https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html option land_air_sea snlen Max synthesized shortname length integer 1 https://www.gpsbabel.org/WEB_DOC_DIR/fmt_land_air_sea.html#fmt_land_air_sea_o_snlen diff --git a/reference/googletakeout/2013/2013_JUNE.json b/reference/googletakeout/2013/2013_JUNE.json new file mode 100644 index 000000000..9f6cf642a --- /dev/null +++ b/reference/googletakeout/2013/2013_JUNE.json @@ -0,0 +1,11811 @@ +{ + "timelineObjects": [{ + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.72459 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.86037 + }, + "duration": { + "startTimestamp": "2013-06-01T16:06:54.349Z", + "endTimestamp": "2013-06-01T16:21:54.644Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277343, + "lngE7": -1221402206 + }, { + "latE7": 374268989, + "lngE7": -1221444015 + }, { + "latE7": 374274597, + "lngE7": -1221412506 + }, { + "latE7": 374284172, + "lngE7": -1221396179 + }, { + "latE7": 374277381, + "lngE7": -1221402282 + }], + "source": "BACKFILLED", + "distanceMeters": 1173.098617164307, + "travelMode": "WALK", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374268570, + "lngE7": -1221441574, + "accuracyMeters": 20, + "timestamp": "2013-06-01T16:13:41.460Z" + }, { + "latE7": 374274216, + "lngE7": -1221412811, + "accuracyMeters": 48, + "timestamp": "2013-06-01T16:18:41.511Z" + }, { + "latE7": 374284439, + "lngE7": -1221395264, + "accuracyMeters": 48, + "timestamp": "2013-06-01T16:23:04.723Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.86037 + }, + "duration": { + "startTimestamp": "2013-06-01T16:21:54.644Z", + "endTimestamp": "2013-06-01T17:36:03.202Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374279703, + "centerLngE7": -1221400046, + "visitConfidence": 67, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.062115148 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.007737643 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0058532185 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.002668936 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0025660265 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0015502889 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.001505363 + }, { + "latitudeE7": 374281042, + "longitudeE7": -1221413747, + "placeId": "ChIJfT0IOOW6j4ARF8U5xucxAUE", + "address": "150 Grant Ave F, Palo Alto, CA 94306, USA", + "name": "Loy D. Martin Furniture", + "locationConfidence": 0.0013505612 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0013012927 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-01T17:36:03.202Z", + "endTimestamp": "2013-06-01T17:39:11.793Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277343, + "lngE7": -1221402206 + }, { + "latE7": 374297065, + "lngE7": -1221439895 + }], + "source": "BACKFILLED", + "distanceMeters": 457.021024820977, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-01T17:39:11.793Z", + "endTimestamp": "2013-06-01T17:43:26.262Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374297065, + "lngE7": -1221439895 + }, { + "latE7": 374326820, + "lngE7": -1221520690 + }], + "source": "BACKFILLED", + "distanceMeters": 926.8831529135463, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374274745, + "longitudeE7": -1221697190, + "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk", + "address": "450 Serra Mall, Stanford, California 94305, United States", + "name": "Stanford University", + "locationConfidence": 71.30179 + }, + "duration": { + "startTimestamp": "2013-06-01T17:43:26.262Z", + "endTimestamp": "2013-06-01T17:56:06.456Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374327343, + "centerLngE7": -1221519329, + "visitConfidence": 74, + "otherCandidateLocations": [{ + "latitudeE7": 374338824, + "longitudeE7": -1221551957, + "placeId": "ChIJj8YY9SC7j4ARzqU6piSci4k", + "address": "25 Churchill Ave, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 19.258303 + }, { + "latitudeE7": 374366525, + "longitudeE7": -1221566629, + "placeId": "ChIJ7QtCEyG7j4ARjD4nI1AAXHk", + "address": "50 Embarcadero Rd, Palo Alto, CA 94301, USA", + "name": "Palo Alto High School", + "locationConfidence": 4.051393 + }, { + "latitudeE7": 374299808, + "longitudeE7": -1221478051, + "placeId": "ChIJDVJnNuG6j4ARNn9mC_LVUow", + "address": "314 Stanford Ave, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.4193861 + }, { + "latitudeE7": 374279660, + "longitudeE7": -1221544500, + "placeId": "ChIJRddofN66j4ARwWU2TJEnplc", + "address": "88 Hulme Ct, Stanford, CA 94305, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.1867815 + }, { + "latitudeE7": 374312740, + "longitudeE7": -1221542247, + "placeId": "ChIJiXF8nd-6j4AREa7dHTuiDG0", + "locationConfidence": 0.4787603 + }, { + "latitudeE7": 374315145, + "longitudeE7": -1221476461, + "placeId": "ChIJn6yiduG6j4ARBP9ci2gGMws", + "address": "1899 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Peers Park", + "locationConfidence": 0.4589858 + }, { + "latitudeE7": 374343814, + "longitudeE7": -1221542035, + "placeId": "ChIJTxSSUCC7j4ARjwe7mDhsuv0", + "address": "Palo Alto, CA 94306, USA", + "name": "El Camino Field", + "locationConfidence": 0.19302057 + }, { + "latitudeE7": 374332610, + "longitudeE7": -1221519470, + "placeId": "ChIJM-0yACC7j4AR-Ex39_J7Ufg", + "address": "1530 Escobita Ave, Palo Alto, CA 94306, USA", + "name": "Mc Fall Architecture", + "locationConfidence": 0.12767741 + }, { + "latitudeE7": 374356682, + "longitudeE7": -1221532019, + "placeId": "ChIJB9B8ySG7j4ARm4yq36NDZC0", + "address": "Palo Alto, CA 94306, USA", + "name": "Ray Field", + "locationConfidence": 0.12631467 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "simplifiedRawPath": { + "points": [{ + "latE7": 374330734, + "lngE7": -1221512123, + "accuracyMeters": 56, + "timestamp": "2013-06-01T17:43:26.262Z" + }, { + "latE7": 374326747, + "lngE7": -1221520684, + "accuracyMeters": 25, + "timestamp": "2013-06-01T17:55:05.917Z" + }], + "source": "BACKFILLED", + "distanceMeters": 87.63201192843553 + }, + "locationConfidence": 65, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-01T17:56:06.456Z", + "endTimestamp": "2013-06-01T18:07:39.703Z" + }, + "distance": 2179, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374326515, + "lngE7": -1221520996 + }, { + "latE7": 374427719, + "lngE7": -1221613082 + }], + "source": "BACKFILLED", + "distanceMeters": 1871.21804435659, + "travelMode": "DRIVE", + "confidence": 0.9553980370681034 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374437010, + "longitudeE7": -1221620860, + "placeId": "ChIJ4a04Fzq7j4ARUJ8Lswjw1-w", + "address": "167 Hamilton Ave, Palo Alto, CA 94301, USA", + "name": "LYFE Kitchen", + "locationConfidence": 29.330162 + }, + "duration": { + "startTimestamp": "2013-06-01T18:09:09.851Z", + "endTimestamp": "2013-06-01T19:13:04.862Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 374438150, + "centerLngE7": -1221623022, + "visitConfidence": 49, + "otherCandidateLocations": [{ + "latitudeE7": 374438675, + "longitudeE7": -1221618460, + "placeId": "ChIJyaiRIjq7j4ARpFp0WP-WoNA", + "address": "566 Emerson St, Palo Alto, CA 94301, USA", + "name": "Palo Alto Creamery Downtown", + "locationConfidence": 12.296109 + }, { + "latitudeE7": 374439958, + "longitudeE7": -1221619465, + "placeId": "ChIJxWOWGDq7j4ARpaRJE2WTdnA", + "address": "548 Emerson St, Palo Alto, CA 94301, USA", + "name": "Scotty\u0027s Bar", + "locationConfidence": 3.61811 + }, { + "latitudeE7": 374440063, + "longitudeE7": -1221620824, + "placeId": "ChIJR1dfGDq7j4ARNpfUiUP4wn4", + "address": "544 Emerson St, Palo Alto, CA 94301, USA", + "name": "Gravity Bistro", + "locationConfidence": 3.4855602 + }, { + "latitudeE7": 374444157, + "longitudeE7": -1221617461, + "placeId": "ChIJRzi6GDq7j4ARVC4ZzH-ZgJU", + "address": "547 Emerson St, Palo Alto, CA 94301, USA", + "name": "The Rose \u0026 Crown", + "locationConfidence": 2.7840734 + }, { + "latitudeE7": 374439970, + "longitudeE7": -1221629790, + "placeId": "ChIJ5cmUATq7j4ARYSY3cHys344", + "address": "150 University Ave, Palo Alto, CA 94301, USA", + "name": "Amber Dhara", + "locationConfidence": 2.6899176 + }, { + "latitudeE7": 374439220, + "longitudeE7": -1221612470, + "placeId": "ChIJoUToTjq7j4ARwuGAUEUtBlE", + "address": "200 Hamilton Ave, Palo Alto, CA 94301, USA", + "name": "Fraiche Yogurt", + "locationConfidence": 2.1683593 + }, { + "latitudeE7": 374442187, + "longitudeE7": -1221610581, + "placeId": "ChIJY0yKLzq7j4ARNNLYPbJMgN8", + "address": "236 Hamilton Ave, Palo Alto, CA 94301, USA", + "name": "Reposado", + "locationConfidence": 2.162811 + }, { + "latitudeE7": 374442701, + "longitudeE7": -1221618089, + "placeId": "ChIJaQ6tGDq7j4ARZ8PYbWmeW44", + "address": "543 Emerson St, Palo Alto, CA 94301, USA", + "name": "Thaiphoon Restaurant", + "locationConfidence": 1.9868134 + }, { + "latitudeE7": 374447235, + "longitudeE7": -1221614973, + "placeId": "ChIJY5UIijm7j4ARPkLgY0DXJuI", + "address": "538 Ramona St, Palo Alto, CA 94301, USA", + "name": "Coupa Cafe - Ramona", + "locationConfidence": 1.9187678 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 31, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-01T19:13:04.862Z", + "endTimestamp": "2013-06-01T19:31:19.735Z" + }, + "distance": 775, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374440116, + "lngE7": -1221617965 + }, { + "latE7": 374470024, + "lngE7": -1221604690 + }, { + "latE7": 374445495, + "lngE7": -1221630325 + }], + "source": "BACKFILLED", + "distanceMeters": 144.21469137636404, + "travelMode": "WALK", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374470177, + "lngE7": -1221604919, + "accuracyMeters": 35, + "timestamp": "2013-06-01T19:20:57.699Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-01T19:39:00.315Z", + "endTimestamp": "2013-06-01T19:54:12.602Z" + }, + "distance": 829, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374384779, + "longitudeE7": -1221576188, + "placeId": "ChIJHz4XFiW7j4ARCIp120CAcFE", + "address": "855 El Camino Real, Palo Alto, California 94301, United States", + "name": "Trader Joe\u0027s", + "locationConfidence": 46.33747, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-01T19:54:30.604Z", + "endTimestamp": "2013-06-01T20:06:33.929Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374383833, + "centerLngE7": -1221577211, + "visitConfidence": 77, + "otherCandidateLocations": [{ + "latitudeE7": 374384977, + "longitudeE7": -1221591879, + "placeId": "ChIJhUpxHiW7j4AR0lvMzwc8uhk", + "address": "855 El Camino Real, Palo Alto, CA 94301, USA", + "name": "Town \u0026 Country Village", + "locationConfidence": 28.721172, + "isCurrentLocation": true + }, { + "latitudeE7": 374274745, + "longitudeE7": -1221697190, + "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk", + "address": "450 Serra Mall, Stanford, CA 94305, USA", + "name": "Stanford University", + "locationConfidence": 7.97669 + }, { + "latitudeE7": 374386402, + "longitudeE7": -1221603598, + "placeId": "ChIJDzte4iS7j4ARJFjeDhtStzw", + "address": "855 El Camino Real Suite 13A, Palo Alto, CA 94301, USA", + "name": "The UPS Store", + "locationConfidence": 3.4571042 + }, { + "latitudeE7": 374383508, + "longitudeE7": -1221583303, + "placeId": "ChIJHz4XFiW7j4ARH8LOCdB6-30", + "locationConfidence": 1.6761993 + }, { + "latitudeE7": 374382568, + "longitudeE7": -1221585946, + "placeId": "ChIJEbMpYCS7j4ARmll1sL_js4c", + "address": "855 El Camino Real, Palo Alto, CA 94301, USA", + "name": "Mayfield Bakery \u0026 Cafe", + "locationConfidence": 1.0580846 + }, { + "latitudeE7": 374385004, + "longitudeE7": -1221591828, + "placeId": "ChIJHz4XFiW7j4ARM4P24wXToXo", + "address": "1604 Laurel St, San Carlos, CA 94070, USA", + "name": "The Coin Broker", + "locationConfidence": 0.9215652 + }, { + "latitudeE7": 374384600, + "longitudeE7": -1221589024, + "placeId": "ChIJHz4XFiW7j4ARRqxJ_xOCzeM", + "address": "855 El Camino Real, Palo Alto, CA 94301, USA", + "name": "CVS", + "locationConfidence": 0.8772216 + }, { + "latitudeE7": 374386485, + "longitudeE7": -1221586839, + "placeId": "ChIJHz4XFiW7j4ARj31OtMrm-v8", + "locationConfidence": 0.59254056 + }, { + "latitudeE7": 374433038, + "longitudeE7": -1221699097, + "placeId": "ChIJ9xcroCS7j4ARgQUa9e7_BLk", + "address": "180 El Camino Real, Stanford Shopping Center, Palo Alto, CA 94304, USA", + "name": "Anthropologie \u0026 Co.", + "locationConfidence": 0.5527861 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 44, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-01T20:06:33.929Z", + "endTimestamp": "2013-06-01T20:20:38.838Z" + }, + "distance": 1776, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374382743, + "lngE7": -1221579818 + }, { + "latE7": 374350891, + "lngE7": -1221520614 + }, { + "latE7": 374324913, + "lngE7": -1221519165 + }, { + "latE7": 374294128, + "lngE7": -1221434631 + }], + "source": "BACKFILLED", + "distanceMeters": 2249.946549858231, + "travelMode": "DRIVE", + "confidence": 0.9806894240403187 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374351196, + "lngE7": -1221520309, + "accuracyMeters": 43, + "timestamp": "2013-06-01T20:09:36.034Z" + }, { + "latE7": 374326210, + "lngE7": -1221517334, + "accuracyMeters": 27, + "timestamp": "2013-06-01T20:14:22.560Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.86128 + }, + "duration": { + "startTimestamp": "2013-06-01T20:22:37.047Z", + "endTimestamp": "2013-06-02T15:57:14.614Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374280363, + "centerLngE7": -1221399258, + "visitConfidence": 94, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.057618715 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.0128383795 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.008319062 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.003282504 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0030701684 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0019574037 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0019147097 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0019016122 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJrSNqOOW6j4ARks8f6dWIC9Y", + "address": "2625 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Intertec", + "locationConfidence": 0.0014424316 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.86128 + }, + "endLocation": { + "latitudeE7": 374263542, + "longitudeE7": -1221445037, + "placeId": "ChIJK3g59OW6j4AR5Q5CCNShy3o", + "address": "405 California Avenue, Palo Alto, California 94306, United States", + "name": "Joanie\u0027s Cafe", + "locationConfidence": 9.768986 + }, + "duration": { + "startTimestamp": "2013-06-02T15:57:14.614Z", + "endTimestamp": "2013-06-02T16:07:01.748Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277343, + "lngE7": -1221402206 + }, { + "latE7": 374262657, + "lngE7": -1221453247 + }], + "source": "BACKFILLED", + "distanceMeters": 721.48090442587, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374263542, + "longitudeE7": -1221445037, + "placeId": "ChIJK3g59OW6j4AR5Q5CCNShy3o", + "address": "405 California Avenue, Palo Alto, California 94306, United States", + "name": "Joanie\u0027s Cafe", + "locationConfidence": 9.768986 + }, + "duration": { + "startTimestamp": "2013-06-02T16:07:01.748Z", + "endTimestamp": "2013-06-02T16:17:45.347Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374262900, + "centerLngE7": -1221449400, + "visitConfidence": 65, + "otherCandidateLocations": [{ + "latitudeE7": 374260050, + "longitudeE7": -1221447975, + "placeId": "ChIJA_0-8-W6j4ARRLCg6K5oT6k", + "address": "344 California Ave, Palo Alto, CA 94306, USA", + "name": "ZombieRunner", + "locationConfidence": 8.407062 + }, { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "locationConfidence": 7.112252 + }, { + "latitudeE7": 374261647, + "longitudeE7": -1221453776, + "placeId": "ChIJc37X8eW6j4ARCGK8720jjo8", + "address": "440 California Ave, Palo Alto, CA 94306, USA", + "name": "Country Sun Natural Foods", + "locationConfidence": 6.7914143 + }, { + "latitudeE7": 374257860, + "longitudeE7": -1221449910, + "placeId": "ChIJl9hU8eW6j4ARyypp2dPEMMs", + "address": "445 California Ave, Palo Alto, CA 94306, USA", + "name": "Cafe Brioche", + "locationConfidence": 3.0552402 + }, { + "latitudeE7": 374254084, + "longitudeE7": -1221453292, + "placeId": "ChIJ06EYWO-6j4AR5x1zss9iick", + "address": "477 California Ave, Palo Alto, CA 94306, USA", + "name": "Izzy\u0027s Brooklyn Bagels", + "locationConfidence": 2.8131847 + }, { + "latitudeE7": 374261314, + "longitudeE7": -1221447284, + "placeId": "ChIJcW8mjeW6j4ARG6xox36yV_c", + "address": "421 California Ave, Palo Alto, CA 94306, USA", + "name": "Subway Restaurants", + "locationConfidence": 2.7407508 + }, { + "latitudeE7": 374260321, + "longitudeE7": -1221449085, + "placeId": "ChIJ81pr8-W6j4ARg2IXxFP2xHM", + "locationConfidence": 2.262629 + }, { + "latitudeE7": 374265798, + "longitudeE7": -1221444315, + "placeId": "ChIJKxrOk-W6j4ARhyl5J5TSpeA", + "address": "2431 Ash St, Palo Alto, CA 94306, USA", + "name": "Hotel California", + "locationConfidence": 1.8503582 + }, { + "latitudeE7": 374259827, + "longitudeE7": -1221448895, + "placeId": "ChIJEWzP8uW6j4ARkmIR7vba8es", + "address": "433 California Ave, Palo Alto, CA 94306, USA", + "name": "Mediterranean Wraps", + "locationConfidence": 1.8091133 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 15, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374263542, + "longitudeE7": -1221445037, + "placeId": "ChIJK3g59OW6j4AR5Q5CCNShy3o", + "address": "405 California Avenue, Palo Alto, California 94306, United States", + "name": "Joanie\u0027s Cafe", + "locationConfidence": 9.768986 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.87275 + }, + "duration": { + "startTimestamp": "2013-06-02T16:17:45.347Z", + "endTimestamp": "2013-06-02T16:28:51.495Z" + }, + "distance": 389, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.87275 + }, + "duration": { + "startTimestamp": "2013-06-02T16:29:21.689Z", + "endTimestamp": "2013-06-02T18:29:21.499Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374278617, + "centerLngE7": -1221400775, + "visitConfidence": 71, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.07287146 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.004364156 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.0039560585 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.002404972 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0020340018 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0016186573 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.001473802 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0013104825 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0012320128 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-02T18:29:21.499Z", + "endTimestamp": "2013-06-02T19:10:28.033Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374279899, + "lngE7": -1221404037 + }, { + "latE7": 376160697, + "lngE7": -1223919448 + }, { + "latE7": 376147346, + "lngE7": -1223901138 + }], + "source": "BACKFILLED", + "distanceMeters": 35697.07778089458, + "travelMode": "DRIVE", + "confidence": 0.9975802802083932 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 376165276, + "lngE7": -1223921204, + "accuracyMeters": 67, + "timestamp": "2013-06-02T18:58:02.227Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-02T19:16:07.698Z", + "endTimestamp": "2013-06-02T19:18:26.596Z" + }, + "distance": 181, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 376157760, + "lngE7": -1223904800 + }, { + "latE7": 376161270, + "lngE7": -1223918685 + }], + "source": "BACKFILLED", + "distanceMeters": 174.9217375050344, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-02T19:23:21.741Z", + "endTimestamp": "2013-06-02T19:52:14.958Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 376160926, + "lngE7": -1223918609 + }, { + "latE7": 374547348, + "lngE7": -1221779861 + }, { + "latE7": 374542007, + "lngE7": -1221821899 + }, { + "latE7": 374514579, + "lngE7": -1221790008 + }], + "source": "BACKFILLED", + "distanceMeters": 30572.438261598676, + "travelMode": "DRIVE", + "confidence": 0.6081411580711813 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374546623, + "lngE7": -1221776733, + "accuracyMeters": 43, + "timestamp": "2013-06-02T19:48:06.612Z" + }, { + "latE7": 374544449, + "lngE7": -1221819382, + "accuracyMeters": 65, + "timestamp": "2013-06-02T19:49:08.298Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374505321, + "longitudeE7": -1221791572, + "placeId": "ChIJ33JzmLOkj4ARisZhlgHYIYE", + "address": "525 El Camino Real, Menlo Park, California 94025, United States", + "name": "Safeway", + "locationConfidence": 76.55585, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-02T19:52:14.958Z", + "endTimestamp": "2013-06-02T20:07:24.315Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374506715, + "centerLngE7": -1221790431, + "visitConfidence": 68, + "otherCandidateLocations": [{ + "latitudeE7": 374516231, + "longitudeE7": -1221783425, + "placeId": "ChIJs07KSbKkj4AR1VKhCks5GqM", + "address": "700 El Camino Real Ste 120, Menlo Park, CA 94025, USA", + "name": "Staples", + "locationConfidence": 2.0642905 + }, { + "latitudeE7": 374521241, + "longitudeE7": -1221792228, + "placeId": "ChIJs07KSbKkj4ARVxf6CBCeNxw", + "address": "700 El Camino Real, Menlo Park, CA 94025, USA", + "name": "BevMo!", + "locationConfidence": 1.953718 + }, { + "latitudeE7": 374512870, + "longitudeE7": -1221779020, + "placeId": "ChIJd3tdSbKkj4AR81em9l8W01o", + "address": "700 El Camino Real, Menlo Park, CA 94025, USA", + "name": "Big 5 Sporting Goods", + "locationConfidence": 1.3189399 + }, { + "latitudeE7": 374507447, + "longitudeE7": -1221779054, + "placeId": "ChIJxV5zpLOkj4ARc27tjIwQkRE", + "address": "Menlo Park, CA 94025, USA", + "name": "El Camino Real \u0026 Middle Ave", + "locationConfidence": 1.0983325 + }, { + "latitudeE7": 374496540, + "longitudeE7": -1221782950, + "placeId": "ChIJufxUv7Okj4AR9_5v2USTvb0", + "address": "515 El Camino Real Suite 110, Menlo Park, CA 94025, USA", + "name": "Rubio\u0027s Coastal Grill", + "locationConfidence": 1.0081108, + "isCurrentLocation": true + }, { + "latitudeE7": 374495670, + "longitudeE7": -1221781730, + "placeId": "ChIJufxUv7Okj4ARlVIu8V2VYt4", + "address": "515 El Camino Real #100, Menlo Park, CA 94025, USA", + "name": "Peet\u0027s Coffee", + "locationConfidence": 0.97191477, + "isCurrentLocation": true + }, { + "latitudeE7": 374504170, + "longitudeE7": -1221788500, + "placeId": "ChIJufxUv7Okj4ARXK6nW9S3YzA", + "locationConfidence": 0.8859845, + "isCurrentLocation": true + }, { + "latitudeE7": 374497014, + "longitudeE7": -1221784265, + "placeId": "ChIJufxUv7Okj4ARDu1dffwHGA4", + "address": "515 El Camino Real Suite 120, Menlo Park, CA 94025, USA", + "name": "Unleashed by Petco", + "locationConfidence": 0.8723743 + }, { + "latitudeE7": 374505832, + "longitudeE7": -1221789524, + "placeId": "ChIJL1q9x7Okj4ARx8KC9hJ8PJU", + "locationConfidence": 0.7733364, + "isCurrentLocation": true + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 69, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-02T20:07:24.315Z", + "endTimestamp": "2013-06-02T20:09:29.612Z" + }, + "distance": 142, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374504508, + "lngE7": -1221787109 + }, { + "latE7": 374499549, + "lngE7": -1221775588 + }], + "source": "BACKFILLED", + "distanceMeters": 130.4544290242415, + "travelMode": "WALK", + "confidence": 0.9697007556340363 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-02T20:09:29.612Z", + "endTimestamp": "2013-06-02T20:19:07.253Z" + }, + "distance": 4411, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374499740, + "lngE7": -1221775970 + }, { + "latE7": 374280281, + "lngE7": -1221404647 + }], + "source": "BACKFILLED", + "distanceMeters": 4504.9799415806865, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.87351 + }, + "duration": { + "startTimestamp": "2013-06-02T20:19:07.253Z", + "endTimestamp": "2013-06-03T15:41:49.363Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374280446, + "centerLngE7": -1221399197, + "visitConfidence": 95, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.05777613 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.008644854 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.004431778 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0033590165 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0031576427 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0020125026 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0019460546 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0019408338 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJrSNqOOW6j4ARks8f6dWIC9Y", + "address": "2625 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Intertec", + "locationConfidence": 0.0014721825 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-03T15:41:49.363Z", + "endTimestamp": "2013-06-03T16:03:56.130Z" + }, + "distance": 4244, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277954, + "lngE7": -1221410446 + }, { + "latE7": 374156799, + "lngE7": -1221026153 + }], + "source": "BACKFILLED", + "distanceMeters": 5318.512445430101, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-03T16:04:54.376Z", + "endTimestamp": "2013-06-03T16:20:20.960Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374156799, + "lngE7": -1221026153 + }, { + "latE7": 374079971, + "lngE7": -1221089630 + }], + "source": "BACKFILLED", + "distanceMeters": 1247.423068833269, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374076193, + "longitudeE7": -1221113035, + "placeId": "ChIJUwpM8XW6j4ARD2AsKqjKG90", + "address": "230 San Antonio Circle, Mountain View, California 94040-1276, United States", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 39.604214 + }, + "duration": { + "startTimestamp": "2013-06-03T16:20:20.960Z", + "endTimestamp": "2013-06-03T16:32:28.388Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374075660, + "centerLngE7": -1221091830, + "visitConfidence": 57, + "otherCandidateLocations": [{ + "latitudeE7": 374071570, + "longitudeE7": -1221072310, + "placeId": "ChIJpf5C7Z-wj4ARQc1h-aLf56E", + "locationConfidence": 16.313314 + }, { + "latitudeE7": 373999768, + "longitudeE7": -1221097812, + "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY", + "address": "2550 W El Camino Real, Mountain View, CA 94040, USA", + "name": "San Antonio Center", + "locationConfidence": 14.344387 + }, { + "latitudeE7": 374079966, + "longitudeE7": -1221091438, + "placeId": "ChIJFUlBgnW6j4ARrglNuMK3SJc", + "address": "100 San Antonio Cir, Mountain View, CA 94040, USA", + "name": "Franciscan Glass Company, Inc", + "locationConfidence": 3.397736 + }, { + "latitudeE7": 374087454, + "longitudeE7": -1221100611, + "placeId": "ChIJaeE8h3W6j4AR7as0vi4zwBw", + "address": "134 San Antonio Cir, Mountain View, CA 94040, USA", + "name": "Bruce Bauer Lumber \u0026 Supply", + "locationConfidence": 2.9142084 + }, { + "latitudeE7": 374072570, + "longitudeE7": -1221071328, + "placeId": "ChIJZ2hC35-wj4ARoNmT4OfyKz8", + "address": "190 Showers Dr, Mountain View, CA 94040, USA", + "name": "San Antonio", + "locationConfidence": 2.2072754 + }, { + "latitudeE7": 374067434, + "longitudeE7": -1221089961, + "placeId": "ChIJY3TXNla6j4ARbxMzhlnw_LI", + "address": "1650 S Amphlett Blvd Suite 213, San Mateo, CA 94402, USA", + "name": "Matrix Consulting Group", + "locationConfidence": 1.1335881 + }, { + "latitudeE7": 374078723, + "longitudeE7": -1221095172, + "placeId": "ChIJ66d7gXW6j4ARvPYQpPNUHPo", + "locationConfidence": 1.1071953 + }, { + "latitudeE7": 374085869, + "longitudeE7": -1221095409, + "placeId": "ChIJcVGzADe7j4ARXAFi9e7R97Y", + "address": "126 San Antonio Cir, Mountain View, CA 94040, USA", + "name": "Stanford Electric Works", + "locationConfidence": 1.0725551 + }, { + "latitudeE7": 374058833, + "longitudeE7": -1221103198, + "placeId": "ChIJdSE1Lp6wj4ARzamoy7P6y1I", + "address": "2500 California St, Mountain View, CA 94040, USA", + "name": "Planned Parenthood - Mountain View Health Center", + "locationConfidence": 1.0073286 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 39, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374076193, + "longitudeE7": -1221113035, + "placeId": "ChIJUwpM8XW6j4ARD2AsKqjKG90", + "address": "230 San Antonio Circle, Mountain View, California 94040-1276, United States", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 39.604214 + }, + "endLocation": { + "latitudeE7": 373989510, + "longitudeE7": -1221108105, + "placeId": "ChIJwz4tvpmwj4ARvlDtWYF38h4", + "address": "4800 El Camino Real, Los Altos, California 94022, United States", + "name": "Whole Foods Market", + "locationConfidence": 62.967205 + }, + "duration": { + "startTimestamp": "2013-06-03T16:32:29.462Z", + "endTimestamp": "2013-06-03T16:48:30.892Z" + }, + "distance": 861, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374063491, + "lngE7": -1221093597 + }, { + "latE7": 373994750, + "lngE7": -1221099853 + }], + "source": "BACKFILLED", + "distanceMeters": 1052.288310100607, + "travelMode": "WALK", + "confidence": 0.9481365401597555 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 373989510, + "longitudeE7": -1221108105, + "placeId": "ChIJwz4tvpmwj4ARvlDtWYF38h4", + "address": "4800 El Camino Real, Los Altos, California 94022, United States", + "name": "Whole Foods Market", + "locationConfidence": 62.967205 + }, + "duration": { + "startTimestamp": "2013-06-03T16:48:30.892Z", + "endTimestamp": "2013-06-03T17:18:50.606Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 373993723, + "centerLngE7": -1221102645, + "visitConfidence": 78, + "otherCandidateLocations": [{ + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "Walmart", + "locationConfidence": 12.419312 + }, { + "latitudeE7": 373998779, + "longitudeE7": -1221102288, + "placeId": "ChIJMV15pZmwj4ARLhxqmN3SfWI", + "address": "2500 W El Camino Real Suite A, Mountain View, CA 94040, USA", + "name": "Subway Restaurants", + "locationConfidence": 3.5384083 + }, { + "latitudeE7": 373992577, + "longitudeE7": -1221093791, + "placeId": "ChIJYRIzNZiwj4ARs5HjvT7t39c", + "address": "2495 Old Middlefield Way, Mountain View, CA 94043, USA", + "name": "Artisan Wine Depot Mountain View", + "locationConfidence": 2.3603964 + }, { + "latitudeE7": 373999768, + "longitudeE7": -1221097812, + "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY", + "address": "2550 W El Camino Real, Mountain View, CA 94040, USA", + "name": "San Antonio Center", + "locationConfidence": 2.3025334 + }, { + "latitudeE7": 373999200, + "longitudeE7": -1221102420, + "placeId": "ChIJz5Mtu5mwj4AR679m6EywSwE", + "address": "2510 W El Camino Real Suite 1, Mountain View, CA 94040, USA", + "name": "Chase Bank", + "locationConfidence": 1.8998272 + }, { + "latitudeE7": 373989695, + "longitudeE7": -1221109199, + "placeId": "ChIJ47ZNlJmwj4ARYmY9rk3I2XA", + "address": "4800 El Camino Real, Los Altos, CA 94022, USA", + "name": "Smitten Ice Cream", + "locationConfidence": 1.5124466 + }, { + "latitudeE7": 373999675, + "longitudeE7": -1221103015, + "placeId": "ChIJRbhVMpmwj4ARFN11xeuK8jc", + "address": "2510 W El Camino Real Suite 2, Mountain View, CA 94040, USA", + "name": "GNC", + "locationConfidence": 1.3595289 + }, { + "latitudeE7": 373994171, + "longitudeE7": -1221095778, + "placeId": "ChIJg_36s5mwj4ARtuKchhBm53o", + "address": "2496 W El Camino Real, Mountain View, CA 94040, USA", + "name": "Gingko Home Furnishings", + "locationConfidence": 1.0380085 + }, { + "latitudeE7": 373989840, + "longitudeE7": -1221097530, + "placeId": "ChIJdTCgyZmwj4AR0mz4VwJQmfM", + "address": "4844 El Camino Real, Los Altos, CA 94022, USA", + "name": "See\u0027s Candies", + "locationConfidence": 0.5469871 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 58, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 373989510, + "longitudeE7": -1221108105, + "placeId": "ChIJwz4tvpmwj4ARvlDtWYF38h4", + "address": "4800 El Camino Real, Los Altos, California 94022, United States", + "name": "Whole Foods Market", + "locationConfidence": 62.967205 + }, + "endLocation": { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Drive, Mountain View, California 94040, United States", + "name": "Walmart", + "locationConfidence": 74.15459, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-03T17:18:50.606Z", + "endTimestamp": "2013-06-03T17:22:17.443Z" + }, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 373993568, + "lngE7": -1221103057 + }, { + "latE7": 374010658, + "lngE7": -1221090850 + }], + "source": "BACKFILLED", + "distanceMeters": 296.1594081907772, + "travelMode": "WALK", + "confidence": 0.9634012950102394 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Drive, Mountain View, California 94040, United States", + "name": "Walmart", + "locationConfidence": 74.15459, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-03T17:22:17.443Z", + "endTimestamp": "2013-06-03T17:32:22.663Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374011388, + "centerLngE7": -1221092362, + "visitConfidence": 73, + "otherCandidateLocations": [{ + "latitudeE7": 373999768, + "longitudeE7": -1221097812, + "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY", + "address": "2550 W El Camino Real, Mountain View, CA 94040, USA", + "name": "San Antonio Center", + "locationConfidence": 10.212976 + }, { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJq0BZBZmwj4ARL9oe-W9j7Dw", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "Walmart Pharmacy", + "locationConfidence": 4.3897634 + }, { + "latitudeE7": 374020870, + "longitudeE7": -1221107610, + "placeId": "ChIJNQXj95iwj4ARmJbKFsVOjYM", + "address": "590 Showers Dr, Mountain View, CA 94040, USA", + "name": "Trader Joe\u0027s", + "locationConfidence": 1.8930695 + }, { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "Walmart", + "locationConfidence": 1.61336 + }, { + "latitudeE7": 374008487, + "longitudeE7": -1221097098, + "placeId": "ChIJryH6Apmwj4ARCdkltkKzGxQ", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "McDonald\u0027s", + "locationConfidence": 1.1141142 + }, { + "latitudeE7": 373989510, + "longitudeE7": -1221108105, + "placeId": "ChIJwz4tvpmwj4ARvlDtWYF38h4", + "address": "4800 El Camino Real, Los Altos, CA 94022, USA", + "name": "Whole Foods Market", + "locationConfidence": 0.6182512 + }, { + "latitudeE7": 374008000, + "longitudeE7": -1221100000, + "placeId": "ChIJq0BZBZmwj4ARpAJYd2P5_BY", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "Walmart Photo Center", + "locationConfidence": 0.4036913 + }, { + "latitudeE7": 374007876, + "longitudeE7": -1221060830, + "placeId": "ChIJq9ZWgKKwj4ARvAcUB1cNp-k", + "address": "555 Showers Dr, Mountain View, CA 94040, USA", + "name": "Target", + "locationConfidence": 0.35849935 + }, { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "Walmart", + "locationConfidence": 0.2864842, + "isCurrentLocation": true + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 67, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-03T17:32:22.663Z", + "endTimestamp": "2013-06-03T17:35:17.183Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374010658, + "lngE7": -1221090850 + }, { + "latE7": 373997688, + "lngE7": -1221100234 + }], + "source": "BACKFILLED", + "distanceMeters": 246.93541686406158, + "travelMode": "WALK", + "confidence": 0.8986892474224059 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-03T17:35:17.183Z", + "endTimestamp": "2013-06-03T17:47:06.145Z" + }, + "distance": 4242, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 373997688, + "lngE7": -1221100234 + }, { + "latE7": 374274482, + "lngE7": -1221424484 + }], + "source": "BACKFILLED", + "distanceMeters": 4702.990971400093, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-03T17:47:30.640Z", + "endTimestamp": "2013-06-03T17:49:17.986Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374274291, + "lngE7": -1221424102 + }, { + "latE7": 374277153, + "lngE7": -1221409072 + }], + "source": "BACKFILLED", + "distanceMeters": 194.17192210534586, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.861115 + }, + "duration": { + "startTimestamp": "2013-06-03T17:49:17.986Z", + "endTimestamp": "2013-06-03T19:42:37.891Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374280203, + "centerLngE7": -1221399627, + "visitConfidence": 65, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.058173046 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.012335602 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.00760076 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.003148433 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0029011993 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0022993148 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0018662211 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0018227977 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0018014737 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.861115 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.85523 + }, + "duration": { + "startTimestamp": "2013-06-03T19:42:37.891Z", + "endTimestamp": "2013-06-03T20:08:46.044Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374253959, + "lngE7": -1221373977 + }], + "source": "BACKFILLED", + "distanceMeters": 1380.821159718965, + "travelMode": "DRIVE", + "confidence": 0.9386709257199035 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374255447, + "lngE7": -1221373520, + "accuracyMeters": 43, + "timestamp": "2013-06-03T19:46:08.887Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.85523 + }, + "duration": { + "startTimestamp": "2013-06-03T20:08:46.044Z", + "endTimestamp": "2013-06-04T14:42:19.391Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374280454, + "centerLngE7": -1221399217, + "visitConfidence": 94, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.057861406 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.0130009325 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.008661119 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0033667088 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0031647647 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0024232469 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0020187304 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0019449721 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0019411902 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-04T14:42:19.391Z", + "endTimestamp": "2013-06-04T14:53:03.787Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374780693, + "lngE7": -1221543579 + }], + "source": "BACKFILLED", + "distanceMeters": 8850.979637190687, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-04T14:53:03.787Z", + "endTimestamp": "2013-06-04T14:56:47.682Z" + }, + "distance": 1185, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374780845, + "lngE7": -1221543960 + }, { + "latE7": 374856643, + "lngE7": -1221470031 + }], + "source": "BACKFILLED", + "distanceMeters": 1350.0800018887721, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 78.15475 + }, + "duration": { + "startTimestamp": "2013-06-04T14:56:47.682Z", + "endTimestamp": "2013-06-04T15:14:50.936Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 374857221, + "centerLngE7": -1221470300, + "visitConfidence": 78, + "otherCandidateLocations": [{ + "latitudeE7": 374858048, + "longitudeE7": -1221480233, + "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 13.087156 + }, { + "latitudeE7": 374945295, + "longitudeE7": -1220734968, + "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4", + "address": "2 Marshlands Rd, Fremont, CA 94555, USA", + "name": "Don Edwards San Francisco Bay National Wildlife Refuge", + "locationConfidence": 6.6574435 + }, { + "latitudeE7": 374841127, + "longitudeE7": -1221482444, + "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 2.052949 + }, { + "latitudeE7": 374841002, + "longitudeE7": -1221482519, + "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs", + "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA", + "name": "Alan K Newman DDS PC", + "locationConfidence": 0.039438672 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q", + "locationConfidence": 0.008265508 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 70, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-04T15:14:50.936Z", + "endTimestamp": "2013-06-04T15:20:19.663Z" + }, + "distance": 428, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-04T15:20:19.663Z", + "endTimestamp": "2013-06-04T15:32:17.602Z" + }, + "distance": 934, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-04T15:32:17.602Z", + "endTimestamp": "2013-06-04T15:57:00.960Z" + }, + "distance": 12129, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374746475, + "lngE7": -1221535949 + }, { + "latE7": 374760169, + "lngE7": -1221542739 + }, { + "latE7": 374784545, + "lngE7": -1221717453 + }, { + "latE7": 374313392, + "lngE7": -1221136169 + }], + "source": "BACKFILLED", + "distanceMeters": 7308.155516892957, + "travelMode": "DRIVE", + "confidence": 0.9734542702452232 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374756584, + "lngE7": -1221544113, + "accuracyMeters": 89, + "timestamp": "2013-06-04T15:33:36.389Z" + }, { + "latE7": 374784126, + "lngE7": -1221717834, + "accuracyMeters": 20, + "timestamp": "2013-06-04T15:38:46.251Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-04T16:03:06.136Z", + "endTimestamp": "2013-06-04T16:15:47.877Z" + }, + "distance": 4090, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374313507, + "lngE7": -1221136322 + }, { + "latE7": 374296951, + "lngE7": -1221217651 + }, { + "latE7": 374272766, + "lngE7": -1221436157 + }, { + "latE7": 374258728, + "lngE7": -1221469802 + }], + "source": "BACKFILLED", + "distanceMeters": 4525.336859905837, + "travelMode": "DRIVE", + "confidence": 0.997383759421781 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374297104, + "lngE7": -1221217804, + "accuracyMeters": 79, + "timestamp": "2013-06-04T16:05:14.766Z" + }, { + "latE7": 374272766, + "lngE7": -1221436157, + "accuracyMeters": 29, + "timestamp": "2013-06-04T16:10:36.618Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-04T16:15:47.877Z", + "endTimestamp": "2013-06-04T16:21:08.618Z" + }, + "distance": 555, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.84853 + }, + "duration": { + "startTimestamp": "2013-06-04T16:21:47.537Z", + "endTimestamp": "2013-06-04T22:54:13.094Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374280342, + "centerLngE7": -1221401880, + "visitConfidence": 83, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.072244935 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.010869744 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.006993783 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0033895273 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0030005171 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0021944554 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0020844415 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0016250901 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0015869089 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.84853 + }, + "endLocation": { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Drive, Mountain View, California 94040, United States", + "name": "Walmart", + "locationConfidence": 71.84966, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-04T22:54:13.094Z", + "endTimestamp": "2013-06-04T23:15:47.347Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374284286, + "lngE7": -1221400451 + }, { + "latE7": 374313011, + "lngE7": -1221135559 + }, { + "latE7": 374013748, + "lngE7": -1221136093 + }, { + "latE7": 374015464, + "lngE7": -1221087722 + }, { + "latE7": 374011039, + "lngE7": -1221103668 + }], + "source": "BACKFILLED", + "distanceMeters": 4876.3235980492145, + "travelMode": "DRIVE", + "confidence": 0.8311646540699785 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374308395, + "lngE7": -1221140213, + "accuracyMeters": 25, + "timestamp": "2013-06-04T23:04:20.854Z" + }, { + "latE7": 374015198, + "lngE7": -1221135559, + "accuracyMeters": 39, + "timestamp": "2013-06-04T23:14:30.731Z" + }, { + "latE7": 374016304, + "lngE7": -1221089249, + "accuracyMeters": 72, + "timestamp": "2013-06-04T23:16:51.282Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Drive, Mountain View, California 94040, United States", + "name": "Walmart", + "locationConfidence": 71.84966, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-04T23:15:47.347Z", + "endTimestamp": "2013-06-04T23:29:17.938Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374012364, + "centerLngE7": -1221094929, + "visitConfidence": 69, + "otherCandidateLocations": [{ + "latitudeE7": 373999768, + "longitudeE7": -1221097812, + "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY", + "address": "2550 W El Camino Real, Mountain View, CA 94040, USA", + "name": "San Antonio Center", + "locationConfidence": 10.753091 + }, { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJq0BZBZmwj4ARL9oe-W9j7Dw", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "Walmart Pharmacy", + "locationConfidence": 6.8233542, + "isCurrentLocation": true + }, { + "latitudeE7": 374020870, + "longitudeE7": -1221107610, + "placeId": "ChIJNQXj95iwj4ARmJbKFsVOjYM", + "address": "590 Showers Dr, Mountain View, CA 94040, USA", + "name": "Trader Joe\u0027s", + "locationConfidence": 2.5086367 + }, { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "Walmart", + "locationConfidence": 0.852471 + }, { + "latitudeE7": 374008487, + "longitudeE7": -1221097098, + "placeId": "ChIJryH6Apmwj4ARCdkltkKzGxQ", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "McDonald\u0027s", + "locationConfidence": 0.64703417 + }, { + "latitudeE7": 373989510, + "longitudeE7": -1221108105, + "placeId": "ChIJwz4tvpmwj4ARvlDtWYF38h4", + "address": "4800 El Camino Real, Los Altos, CA 94022, USA", + "name": "Whole Foods Market", + "locationConfidence": 0.5339054 + }, { + "latitudeE7": 374010476, + "longitudeE7": -1221109462, + "placeId": "ChIJ8ZTVZJmwj4ARQFv0RXspg3A", + "address": "2560 W El Camino Real, Mountain View, CA 94040, USA", + "name": "Chili\u0027s Grill \u0026 Bar", + "locationConfidence": 0.51158804 + }, { + "latitudeE7": 374017565, + "longitudeE7": -1221118174, + "placeId": "ChIJKfoIrJ-wj4ARefOkpOnvEYc", + "address": "645 San Antonio Rd, Mountain View, CA 94040, USA", + "name": "Safeway", + "locationConfidence": 0.51081145 + }, { + "latitudeE7": 374008000, + "longitudeE7": -1221100000, + "placeId": "ChIJq0BZBZmwj4ARpAJYd2P5_BY", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "Walmart Photo Center", + "locationConfidence": 0.3103645 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 65, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Drive, Mountain View, California 94040, United States", + "name": "Walmart", + "locationConfidence": 71.84966, + "isCurrentLocation": true + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.84766 + }, + "duration": { + "startTimestamp": "2013-06-04T23:29:17.938Z", + "endTimestamp": "2013-06-04T23:37:41.070Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374016571, + "lngE7": -1221093673 + }, { + "latE7": 374275093, + "lngE7": -1221414260 + }], + "source": "BACKFILLED", + "distanceMeters": 4999.039742833692, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.84766 + }, + "duration": { + "startTimestamp": "2013-06-04T23:37:41.070Z", + "endTimestamp": "2013-06-05T14:55:14.875Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374280269, + "centerLngE7": -1221401982, + "visitConfidence": 92, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.07386564 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.0109617915 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0068934723 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0034019735 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0029948305 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0022132208 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0020840254 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0016295755 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0015958296 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.84766 + }, + "endLocation": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 89.144646 + }, + "duration": { + "startTimestamp": "2013-06-05T14:55:19.636Z", + "endTimestamp": "2013-06-05T15:15:42.862Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374280662, + "lngE7": -1221405258 + }, { + "latE7": 374328346, + "lngE7": -1221282272 + }, { + "latE7": 374331092, + "lngE7": -1221165084 + }, { + "latE7": 374366798, + "lngE7": -1221220779 + }, { + "latE7": 374851951, + "lngE7": -1221498794 + }, { + "latE7": 374853019, + "lngE7": -1221464233 + }], + "source": "BACKFILLED", + "distanceMeters": 9810.80696112748, + "travelMode": "DRIVE", + "confidence": 0.9938828037665143 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374328156, + "lngE7": -1221279907, + "accuracyMeters": 51, + "timestamp": "2013-06-05T14:58:18.877Z" + }, { + "latE7": 374331474, + "lngE7": -1221165466, + "accuracyMeters": 39, + "timestamp": "2013-06-05T15:01:19.284Z" + }, { + "latE7": 374366188, + "lngE7": -1221220169, + "accuracyMeters": 31, + "timestamp": "2013-06-05T15:03:28.641Z" + }, { + "latE7": 374850502, + "lngE7": -1221500397, + "accuracyMeters": 40, + "timestamp": "2013-06-05T15:14:19.137Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 89.144646 + }, + "duration": { + "startTimestamp": "2013-06-05T15:15:42.862Z", + "endTimestamp": "2013-06-05T22:36:38.988Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 374856442, + "centerLngE7": -1221482937, + "visitConfidence": 64, + "otherCandidateLocations": [{ + "latitudeE7": 374841127, + "longitudeE7": -1221482444, + "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 6.951619 + }, { + "latitudeE7": 374945295, + "longitudeE7": -1220734968, + "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4", + "address": "2 Marshlands Rd, Fremont, CA 94555, USA", + "name": "Don Edwards San Francisco Bay National Wildlife Refuge", + "locationConfidence": 2.4419627 + }, { + "latitudeE7": 374858048, + "longitudeE7": -1221480233, + "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.1574366 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q", + "locationConfidence": 0.14667459 + }, { + "latitudeE7": 374841002, + "longitudeE7": -1221482519, + "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs", + "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA", + "name": "Alan K Newman DDS PC", + "locationConfidence": 0.10132071 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4AR42t2K4tvt5k", + "locationConfidence": 0.056344282 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "simplifiedRawPath": { + "points": [{ + "latE7": 374858333, + "lngE7": -1221462216, + "accuracyMeters": 10, + "timestamp": "2013-06-05T15:17:48.976Z" + }, { + "latE7": 374858333, + "lngE7": -1221462216, + "accuracyMeters": 10, + "timestamp": "2013-06-05T15:20:12.165Z" + }, { + "latE7": 374852380, + "lngE7": -1221479613, + "accuracyMeters": 30, + "timestamp": "2013-06-05T18:41:23.196Z" + }, { + "latE7": 374852380, + "lngE7": -1221479613, + "accuracyMeters": 30, + "timestamp": "2013-06-05T18:42:34.973Z" + }, { + "latE7": 374852380, + "lngE7": -1221479613, + "accuracyMeters": 30, + "timestamp": "2013-06-05T18:43:37.506Z" + }, { + "latE7": 374852380, + "lngE7": -1221479613, + "accuracyMeters": 30, + "timestamp": "2013-06-05T18:44:37.575Z" + }, { + "latE7": 374852380, + "lngE7": -1221479613, + "accuracyMeters": 30, + "timestamp": "2013-06-05T18:45:39.874Z" + }, { + "latE7": 374852380, + "lngE7": -1221479613, + "accuracyMeters": 30, + "timestamp": "2013-06-05T18:48:24.882Z" + }, { + "latE7": 374844917, + "lngE7": -1221487525, + "accuracyMeters": 27, + "timestamp": "2013-06-05T19:50:18.724Z" + }, { + "latE7": 374840502, + "lngE7": -1221489391, + "accuracyMeters": 23, + "timestamp": "2013-06-05T19:52:06.048Z" + }, { + "latE7": 374857445, + "lngE7": -1221485314, + "accuracyMeters": 21, + "timestamp": "2013-06-05T20:57:30.281Z" + }, { + "latE7": 374856735, + "lngE7": -1221477489, + "accuracyMeters": 37, + "timestamp": "2013-06-05T22:31:47.074Z" + }], + "source": "BACKFILLED", + "distanceMeters": 1270.834456704224 + }, + "locationConfidence": 79, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-05T22:36:38.988Z", + "endTimestamp": "2013-06-05T22:47:20.361Z" + }, + "distance": 5657, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374857749, + "lngE7": -1221489181 + }, { + "latE7": 374383392, + "lngE7": -1221247024 + }], + "source": "BACKFILLED", + "distanceMeters": 7601.6993079649565, + "travelMode": "DRIVE", + "confidence": 0.9833036502135002 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-05T22:47:20.361Z", + "endTimestamp": "2013-06-05T22:57:25.719Z" + }, + "distance": 1935, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374383659, + "lngE7": -1221246719 + }, { + "latE7": 374316787, + "lngE7": -1221140823 + }, { + "latE7": 374316215, + "lngE7": -1221141433 + }, { + "latE7": 374323196, + "lngE7": -1221152420 + }], + "source": "BACKFILLED", + "distanceMeters": 1069.4752634042381, + "travelMode": "WALK", + "confidence": 0.7836439879357618 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374307175, + "lngE7": -1221142273, + "accuracyMeters": 52, + "timestamp": "2013-06-05T22:53:30.246Z" + }, { + "latE7": 374307137, + "lngE7": -1221142426, + "accuracyMeters": 69, + "timestamp": "2013-06-05T22:54:33.573Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374323416, + "longitudeE7": -1221152229 + }, + "endLocation": { + "latitudeE7": 374322469, + "longitudeE7": -1221275808 + }, + "duration": { + "startTimestamp": "2013-06-05T22:57:25.719Z", + "endTimestamp": "2013-06-05T22:59:48.989Z" + }, + "distance": 1336, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "simplifiedRawPath": { + "points": [{ + "latE7": 374292698, + "lngE7": -1221222877, + "accuracyMeters": 30, + "timestamp": "2013-06-05T22:58:48.265Z" + }], + "source": "BACKFILLED", + "distanceMeters": 1283.9392677874 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-05T23:09:31.587Z", + "endTimestamp": "2013-06-05T23:18:55.092Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374326934, + "lngE7": -1221275253 + }, { + "latE7": 374335784, + "lngE7": -1221330718 + }, { + "latE7": 374284286, + "lngE7": -1221400451 + }], + "source": "BACKFILLED", + "distanceMeters": 1654.624626866984, + "travelMode": "DRIVE", + "confidence": 0.7392440263207879 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374337616, + "lngE7": -1221329727, + "accuracyMeters": 10, + "timestamp": "2013-06-05T23:10:45.140Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.84776 + }, + "duration": { + "startTimestamp": "2013-06-05T23:18:55.092Z", + "endTimestamp": "2013-06-06T13:35:27.002Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374280330, + "centerLngE7": -1221401947, + "visitConfidence": 92, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.07278367 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.010891564 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0069823107 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0034078108 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.003010752 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.00220232 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0020955089 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0016274471 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0015890758 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-06T13:35:27.002Z", + "endTimestamp": "2013-06-06T13:44:17.129Z" + }, + "distance": 2249, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374280166, + "lngE7": -1221404495 + }, { + "latE7": 374120216, + "lngE7": -1221247329 + }], + "source": "BACKFILLED", + "distanceMeters": 2725.6871937361807, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-06T13:44:17.129Z", + "endTimestamp": "2013-06-06T13:58:17.024Z" + }, + "distance": 1013, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-06T13:58:17.024Z", + "endTimestamp": "2013-06-06T13:59:56.852Z" + }, + "distance": 120, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-06T14:03:58.382Z", + "endTimestamp": "2013-06-06T14:10:00.355Z" + }, + "distance": 373, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374041328, + "lngE7": -1221162567 + }, { + "latE7": 374023056, + "lngE7": -1221136016 + }], + "source": "BACKFILLED", + "distanceMeters": 460.29489469165117, + "travelMode": "WALK", + "confidence": 0.9495553927902604 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374029196, + "longitudeE7": -1221137372, + "placeId": "ChIJZ9aWP5ywj4ARSQFRC5YOcrc", + "address": "630 San Antonio Road, Mountain View, California 94040, United States", + "name": "Sprouts Farmers Market", + "locationConfidence": 32.65392, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-06T14:10:00.355Z", + "endTimestamp": "2013-06-06T14:29:16.960Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374022573, + "centerLngE7": -1221134800, + "visitConfidence": 74, + "otherCandidateLocations": [{ + "latitudeE7": 374019094, + "longitudeE7": -1221144992, + "placeId": "ChIJAwHOZJywj4AR-4DRT7M_KuA", + "locationConfidence": 13.920831, + "isCurrentLocation": true + }, { + "latitudeE7": 374017565, + "longitudeE7": -1221118174, + "placeId": "ChIJKfoIrJ-wj4ARefOkpOnvEYc", + "address": "645 San Antonio Rd, Mountain View, CA 94040, USA", + "name": "Safeway", + "locationConfidence": 5.384829 + }, { + "latitudeE7": 374016175, + "longitudeE7": -1221129674, + "placeId": "ChIJEVHD9Zuwj4ARBKHe9fJMUIA", + "address": "685 San Antonio Rd Suite 19, Mountain View, CA 94040, USA", + "name": "Jared", + "locationConfidence": 3.6410146 + }, { + "latitudeE7": 374009029, + "longitudeE7": -1221148768, + "placeId": "ChIJMwGvgZuwj4ARXPraJMJy13Q", + "address": "4546 El Camino Real, Los Altos, CA 94022, USA", + "name": "Village Court Shopping Center", + "locationConfidence": 3.0678763 + }, { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "Walmart", + "locationConfidence": 2.8043318 + }, { + "latitudeE7": 374024898, + "longitudeE7": -1221146209, + "placeId": "ChIJD_yTZJywj4ARTLwn1f0aM08", + "address": "2630 W El Camino Real, Mountain View, CA 94040, USA", + "name": "CVS", + "locationConfidence": 2.638195 + }, { + "latitudeE7": 374027223, + "longitudeE7": -1221140838, + "placeId": "ChIJs4k7Dpywj4ARyJHrWS_6BUo", + "address": "636 San Antonio Rd, Mountain View, CA 94040, USA", + "name": "Cold Stone Creamery", + "locationConfidence": 2.0707963 + }, { + "latitudeE7": 374014648, + "longitudeE7": -1221130160, + "placeId": "ChIJ7R0oCJywj4ARzvtHBegJQ3Y", + "address": "685 San Antonio Rd, Mountain View, CA 94040, USA", + "name": "Nekter Juice Bar", + "locationConfidence": 2.0598247 + }, { + "latitudeE7": 373999768, + "longitudeE7": -1221097812, + "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY", + "address": "2550 W El Camino Real, Mountain View, CA 94040, USA", + "name": "San Antonio Center", + "locationConfidence": 1.9919865 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 33, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-06T14:29:16.960Z", + "endTimestamp": "2013-06-06T14:43:16.909Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374023437, + "lngE7": -1221130218 + }, { + "latE7": 374293136, + "lngE7": -1221060638 + }], + "source": "BACKFILLED", + "distanceMeters": 4491.332111709749, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374309694, + "longitudeE7": -1221144096, + "placeId": "ChIJd8wVcES6j4ARtGdzL65UVSU", + "address": "3450 Louis Road, Palo Alto, California 94303-4403, United States", + "name": "Palo Verde Elementary School", + "locationConfidence": 90.770256 + }, + "duration": { + "startTimestamp": "2013-06-06T14:44:29.310Z", + "endTimestamp": "2013-06-06T14:56:52.777Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374308862, + "centerLngE7": -1221141338, + "visitConfidence": 74, + "otherCandidateLocations": [{ + "latitudeE7": 374310286, + "longitudeE7": -1221138338, + "placeId": "ChIJyf66bkS6j4ARhl4pDodcfJ8", + "locationConfidence": 5.593666 + }, { + "latitudeE7": 374310924, + "longitudeE7": -1221139760, + "placeId": "ChIJxTUUcES6j4ARrxuGTChKC6k", + "address": "3450 Louis Rd, Palo Alto, CA 94303, USA", + "name": "Palo Alto Community Child Care", + "locationConfidence": 1.3992596 + }, { + "latitudeE7": 374282592, + "longitudeE7": -1221163841, + "placeId": "ChIJ2eqIXUO6j4AR7nbAZeXR9Fk", + "address": "3412 Ross Rd, Palo Alto, CA 94303, USA", + "name": "Palo Alto Family YMCA", + "locationConfidence": 0.61107266 + }, { + "latitudeE7": 374325367, + "longitudeE7": -1221123907, + "placeId": "ChIJ_UuZKES6j4ARF6JLGsujVdo", + "address": "3427 Janice Way, Palo Alto, CA 94303, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.40189087 + }, { + "latitudeE7": 374301870, + "longitudeE7": -1221113399, + "placeId": "ChIJKVrtREG6j4ARMhCnNDSKNWk", + "address": "3539 Louis Rd, Palo Alto, CA 94303, USA", + "name": "Eichler Swim \u0026 Tennis Club", + "locationConfidence": 0.24975936 + }, { + "latitudeE7": 374319998, + "longitudeE7": -1221135443, + "placeId": "ChIJJ-98R0S6j4ARWJkGcHgpkCk", + "name": "SWATI Couture Indian Fashions", + "locationConfidence": 0.20996676 + }, { + "latitudeE7": 374304068, + "longitudeE7": -1221120429, + "placeId": "ChIJj-xIVkG6j4AR49-S6o77BtU", + "locationConfidence": 0.15743303 + }, { + "latitudeE7": 374286466, + "longitudeE7": -1221151515, + "placeId": "ChIJG_OpC0O6j4ARaQ4LQecDDBA", + "address": "3475 Ross Rd, Palo Alto, CA 94303, USA", + "name": "Russian Orthodox Church", + "locationConfidence": 0.13972427 + }, { + "latitudeE7": 374351753, + "longitudeE7": -1221202996, + "placeId": "ChIJVf9wFUW6j4ARZFD0ISC3DnA", + "address": "3070 Louis Rd, Palo Alto, CA 94303, USA", + "name": "Chabad of Greater South Bay / Palo Alto and Silicon Valley", + "locationConfidence": 0.08707407 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 81, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-06T14:56:52.777Z", + "endTimestamp": "2013-06-06T15:05:53.802Z" + }, + "distance": 1603, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374300422, + "lngE7": -1221147079 + }, { + "latE7": 374277229, + "lngE7": -1221409530 + }], + "source": "BACKFILLED", + "distanceMeters": 3757.265832359336, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-06T15:05:53.802Z", + "endTimestamp": "2013-06-06T15:10:04.361Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277687, + "lngE7": -1221409301 + }, { + "latE7": 374282989, + "lngE7": -1221401977 + }], + "source": "BACKFILLED", + "distanceMeters": 530.5947771519002, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.838455 + }, + "duration": { + "startTimestamp": "2013-06-06T15:10:04.361Z", + "endTimestamp": "2013-06-06T23:42:28.643Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374280077, + "centerLngE7": -1221401996, + "visitConfidence": 85, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.079623275 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.011553122 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0068353163 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0034648047 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.003022671 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0023142472 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0020953093 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.00168858 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0016709785 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.838455 + }, + "endLocation": { + "latitudeE7": 374232150, + "longitudeE7": -1220966046, + "placeId": "ChIJfwoiXRC6j4AR9HFIxQ-jmSU", + "address": "2450 Charleston Road, Mountain View, California 94043-1622, United States", + "name": "REI", + "locationConfidence": 26.724764 + }, + "duration": { + "startTimestamp": "2013-06-06T23:42:28.643Z", + "endTimestamp": "2013-06-07T00:08:34.339Z" + }, + "distance": 5568, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374293670, + "lngE7": -1221222839 + }, { + "latE7": 374320030, + "lngE7": -1221146697 + }, { + "latE7": 374228477, + "lngE7": -1220968246 + }], + "source": "BACKFILLED", + "distanceMeters": 7172.418628106614, + "travelMode": "DRIVE", + "confidence": 0.9804352242486153 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374293098, + "lngE7": -1221222305, + "accuracyMeters": 37, + "timestamp": "2013-06-06T23:49:09.822Z" + }, { + "latE7": 374319611, + "lngE7": -1221147156, + "accuracyMeters": 37, + "timestamp": "2013-06-06T23:51:10.952Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374232150, + "longitudeE7": -1220966046, + "placeId": "ChIJfwoiXRC6j4AR9HFIxQ-jmSU", + "address": "2450 Charleston Road, Mountain View, California 94043-1622, United States", + "name": "REI", + "locationConfidence": 26.724764 + }, + "duration": { + "startTimestamp": "2013-06-07T00:08:56.576Z", + "endTimestamp": "2013-06-07T00:34:30.996Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374229955, + "centerLngE7": -1220969264, + "visitConfidence": 76, + "otherCandidateLocations": [{ + "latitudeE7": 374233361, + "longitudeE7": -1220971062, + "placeId": "ChIJv4heWBC6j4ARTPv9mowDE2E", + "address": "2460 E Charleston Rd, Mountain View, CA 94043, USA", + "name": "Best Buy", + "locationConfidence": 25.91667 + }, { + "latitudeE7": 374225390, + "longitudeE7": -1220966097, + "placeId": "ChIJx-2PmT27j4ARKgyHWFRZbu0", + "address": "E, 2398 Charleston Rd, Mountain View, CA 94043, USA", + "name": "Charleston Plaza", + "locationConfidence": 15.412556, + "isCurrentLocation": true + }, { + "latitudeE7": 374230579, + "longitudeE7": -1220965786, + "placeId": "ChIJu8d3XRC6j4ARMj04Hdwr0Y8", + "address": "2450 Charleston Rd, Mountain View, CA 94043, USA", + "name": "Mahi Kitchen", + "locationConfidence": 13.279034 + }, { + "latitudeE7": 374218137, + "longitudeE7": -1220965771, + "placeId": "ChIJY1FiPRC6j4ARzhKBypjO7eg", + "address": "2400 Charleston Rd, Mountain View, CA 94043, USA", + "name": "Chipotle Mexican Grill", + "locationConfidence": 1.7714068 + }, { + "latitudeE7": 374242095, + "longitudeE7": -1220950175, + "placeId": "ChIJ57ctfxq6j4ARcwyO_nDlw1k", + "address": "2350 Bayshore Pkwy, Mountain View, CA 94043, USA", + "name": "Google Building GWC6", + "locationConfidence": 1.2849343 + }, { + "latitudeE7": 374229505, + "longitudeE7": -1220960329, + "placeId": "ChIJdRTEbhC6j4AR00vUlJmhb30", + "address": "2440 E Charleston Rd, Mountain View, CA 94043, USA", + "name": "Banfield Pet Hospital", + "locationConfidence": 1.2091798 + }, { + "latitudeE7": 374220220, + "longitudeE7": -1220963789, + "placeId": "ChIJS9wPPhC6j4AR-SeTDDlmO84", + "address": "2424 Charleston Rd, Mountain View, CA 94043, USA", + "name": "Erik\u0027s DeliCafé | Mountain View", + "locationConfidence": 1.0426898 + }, { + "latitudeE7": 374218370, + "longitudeE7": -1220964000, + "placeId": "ChIJT_9zPBC6j4ARm2Fu2gYDC0k", + "address": "2410 Charleston Rd, Mountain View, CA 94043, USA", + "name": "Starbucks", + "locationConfidence": 1.0086341 + }, { + "latitudeE7": 374234035, + "longitudeE7": -1220970530, + "placeId": "ChIJv4heWBC6j4ARjmD8QbReQzk", + "address": "2460 E Charleston Rd, Mountain View, CA 94043, USA", + "name": "Geek Squad", + "locationConfidence": 0.95476574 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 28, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374232150, + "longitudeE7": -1220966046, + "placeId": "ChIJfwoiXRC6j4AR9HFIxQ-jmSU", + "address": "2450 Charleston Road, Mountain View, California 94043-1622, United States", + "name": "REI", + "locationConfidence": 26.724764 + }, + "endLocation": { + "latitudeE7": 374060470, + "longitudeE7": -1221093752 + }, + "duration": { + "startTimestamp": "2013-06-07T00:34:30.996Z", + "endTimestamp": "2013-06-07T00:44:32.436Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374230041, + "lngE7": -1220971069 + }, { + "latE7": 374218978, + "lngE7": -1221014251 + }], + "source": "BACKFILLED", + "distanceMeters": 524.4908188963007, + "travelMode": "WALK", + "confidence": 0.9034139085919067 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374060470, + "longitudeE7": -1221093752 + }, + "endLocation": { + "latitudeE7": 373992670, + "longitudeE7": -1221100616 + }, + "duration": { + "startTimestamp": "2013-06-07T00:44:32.436Z", + "endTimestamp": "2013-06-07T00:53:28.300Z" + }, + "distance": 1971, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374063491, + "lngE7": -1221093597 + }, { + "latE7": 373992652, + "lngE7": -1221100311 + }], + "source": "BACKFILLED", + "distanceMeters": 1498.6618674162326, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-07T01:05:04.585Z", + "endTimestamp": "2013-06-07T01:18:10.149Z" + }, + "distance": 5506, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 373992652, + "lngE7": -1221100311 + }, { + "latE7": 374280166, + "lngE7": -1221404495 + }], + "source": "BACKFILLED", + "distanceMeters": 5000.514743191165, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.81975 + }, + "duration": { + "startTimestamp": "2013-06-07T01:18:10.149Z", + "endTimestamp": "2013-06-07T14:39:27.180Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276408, + "centerLngE7": -1221403220, + "visitConfidence": 93, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.10225898 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.016680503 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.003049893 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0025399595 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0021237624 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.00201094 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0019798689 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0018646747 + }, { + "latitudeE7": 374273330, + "longitudeE7": -1221403950, + "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4", + "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA", + "name": "Accident Analysis Associates Inc", + "locationConfidence": 0.001526233, + "isCurrentLocation": true + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-07T14:43:30.459Z", + "endTimestamp": "2013-06-07T14:44:31.516Z" + }, + "distance": 86, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374284629, + "lngE7": -1221404495 + }, { + "latE7": 374277191, + "lngE7": -1221401977 + }], + "source": "BACKFILLED", + "distanceMeters": 180.2553656687399, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-07T14:50:45.017Z", + "endTimestamp": "2013-06-07T15:09:53.578Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374316520, + "lngE7": -1221141128 + }, { + "latE7": 374284286, + "lngE7": -1221400451 + }], + "source": "BACKFILLED", + "distanceMeters": 1041.2329544526367, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374310226, + "lngE7": -1221139450, + "accuracyMeters": 37, + "timestamp": "2013-06-07T14:57:52.138Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.832115 + }, + "duration": { + "startTimestamp": "2013-06-07T15:09:53.578Z", + "endTimestamp": "2013-06-07T20:39:19.869Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374279893, + "centerLngE7": -1221401838, + "visitConfidence": 80, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.083670355 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.0120604215 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0067309737 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0034503255 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0029958205 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.002383545 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.002057533 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0017347741 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0017318304 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-07T20:39:19.869Z", + "endTimestamp": "2013-06-07T20:40:00.409Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277343, + "lngE7": -1221402206 + }, { + "latE7": 374279708, + "lngE7": -1221403732 + }], + "source": "BACKFILLED", + "distanceMeters": 32.42342955807958, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-07T20:40:00.409Z", + "endTimestamp": "2013-06-07T20:54:20.732Z" + }, + "distance": 2378, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374279708, + "lngE7": -1221403732 + }, { + "latE7": 374313163, + "lngE7": -1221135787 + }], + "source": "BACKFILLED", + "distanceMeters": 3665.87606728085, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374309694, + "longitudeE7": -1221144096, + "placeId": "ChIJd8wVcES6j4ARtGdzL65UVSU", + "address": "3450 Louis Road, Palo Alto, California 94303-4403, United States", + "name": "Palo Verde Elementary School", + "locationConfidence": 69.784424 + }, + "duration": { + "startTimestamp": "2013-06-07T20:54:20.732Z", + "endTimestamp": "2013-06-07T21:06:06.773Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374309900, + "centerLngE7": -1221139417, + "visitConfidence": 77, + "otherCandidateLocations": [{ + "latitudeE7": 374310286, + "longitudeE7": -1221138338, + "placeId": "ChIJyf66bkS6j4ARhl4pDodcfJ8", + "locationConfidence": 20.05614, + "isCurrentLocation": true + }, { + "latitudeE7": 374310924, + "longitudeE7": -1221139760, + "placeId": "ChIJxTUUcES6j4ARrxuGTChKC6k", + "address": "3450 Louis Rd, Palo Alto, CA 94303, USA", + "name": "Palo Alto Community Child Care", + "locationConfidence": 5.10824, + "isCurrentLocation": true + }, { + "latitudeE7": 374319998, + "longitudeE7": -1221135443, + "placeId": "ChIJJ-98R0S6j4ARWJkGcHgpkCk", + "name": "SWATI Couture Indian Fashions", + "locationConfidence": 1.1926913 + }, { + "latitudeE7": 374282592, + "longitudeE7": -1221163841, + "placeId": "ChIJ2eqIXUO6j4AR7nbAZeXR9Fk", + "address": "3412 Ross Rd, Palo Alto, CA 94303, USA", + "name": "Palo Alto Family YMCA", + "locationConfidence": 0.98448473 + }, { + "latitudeE7": 374325367, + "longitudeE7": -1221123907, + "placeId": "ChIJ_UuZKES6j4ARF6JLGsujVdo", + "address": "3427 Janice Way, Palo Alto, CA 94303, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.92116106 + }, { + "latitudeE7": 374301870, + "longitudeE7": -1221113399, + "placeId": "ChIJKVrtREG6j4ARMhCnNDSKNWk", + "address": "3539 Louis Rd, Palo Alto, CA 94303, USA", + "name": "Eichler Swim \u0026 Tennis Club", + "locationConfidence": 0.4717832 + }, { + "latitudeE7": 374319143, + "longitudeE7": -1221148913, + "placeId": "ChIJ0QdkV0S6j4ARijvCd4c3ivQ", + "name": "We Invite In Style.", + "locationConfidence": 0.37626323 + }, { + "latitudeE7": 374304068, + "longitudeE7": -1221120429, + "placeId": "ChIJj-xIVkG6j4AR49-S6o77BtU", + "locationConfidence": 0.2781391 + }, { + "latitudeE7": 374351753, + "longitudeE7": -1221202996, + "placeId": "ChIJVf9wFUW6j4ARZFD0ISC3DnA", + "address": "3070 Louis Rd, Palo Alto, CA 94303, USA", + "name": "Chabad of Greater South Bay / Palo Alto and Silicon Valley", + "locationConfidence": 0.15761693 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 64, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-07T21:06:06.773Z", + "endTimestamp": "2013-06-07T23:52:31.411Z" + }, + "distance": 142892, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374313125, + "lngE7": -1221135787 + }, { + "latE7": 384569969, + "lngE7": -1218425674 + }, { + "latE7": 384974594, + "lngE7": -1217943420 + }], + "source": "BACKFILLED", + "distanceMeters": 164432.99149577116, + "travelMode": "DRIVE", + "confidence": 0.9940182517243868 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 384568520, + "lngE7": -1218424225, + "accuracyMeters": 10, + "timestamp": "2013-06-07T23:33:10.884Z" + }, { + "latE7": 384574928, + "lngE7": -1218409271, + "accuracyMeters": 3, + "timestamp": "2013-06-07T23:36:18.775Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 385356593, + "longitudeE7": -1217424489 + }, + "endLocation": { + "latitudeE7": 385482334, + "longitudeE7": -1217189454 + }, + "duration": { + "startTimestamp": "2013-06-08T00:05:05.787Z", + "endTimestamp": "2013-06-08T00:10:50.611Z" + }, + "distance": 5525, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 385351371, + "lngE7": -1217417373 + }, { + "latE7": 385482101, + "lngE7": -1217189407 + }], + "source": "BACKFILLED", + "distanceMeters": 7407.018476850855, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 385551174, + "longitudeE7": -1216843343 + }, + "endLocation": { + "latitudeE7": 395879958, + "longitudeE7": -1197171073, + "placeId": "ChIJB23g8nQ5mYARMhdqLjkXCWY", + "address": "5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 97.27026 + }, + "duration": { + "startTimestamp": "2013-06-08T00:20:25.869Z", + "endTimestamp": "2013-06-08T02:59:05.127Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 385551376, + "lngE7": -1216843414 + }, { + "latE7": 386332511, + "lngE7": -1214905700 + }, { + "latE7": 387977714, + "lngE7": -1212145690 + }, { + "latE7": 393287429, + "lngE7": -1201700592 + }, { + "latE7": 395563201, + "lngE7": -1197855453 + }, { + "latE7": 395878105, + "lngE7": -1197169113 + }], + "source": "BACKFILLED", + "distanceMeters": 241861.73762666612, + "travelMode": "DRIVE", + "confidence": 0.9333350378881619 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 386334953, + "lngE7": -1214901505, + "accuracyMeters": 26, + "timestamp": "2013-06-08T00:45:45.272Z" + }, { + "latE7": 387976990, + "lngE7": -1212144623, + "accuracyMeters": 89, + "timestamp": "2013-06-08T01:08:48.901Z" + }, { + "latE7": 393299866, + "lngE7": -1201707001, + "accuracyMeters": 100, + "timestamp": "2013-06-08T02:16:08.459Z" + }, { + "latE7": 395563087, + "lngE7": -1197855453, + "accuracyMeters": 10, + "timestamp": "2013-06-08T02:48:27.771Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 395879958, + "longitudeE7": -1197171073, + "placeId": "ChIJB23g8nQ5mYARMhdqLjkXCWY", + "address": "5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 97.27026 + }, + "duration": { + "startTimestamp": "2013-06-08T02:59:05.127Z", + "endTimestamp": "2013-06-08T03:39:35.052Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 395880109, + "centerLngE7": -1197171152, + "visitConfidence": 77, + "otherCandidateLocations": [{ + "latitudeE7": 395847543, + "longitudeE7": -1197142148, + "placeId": "ChIJF3gEfHQ5mYARB-VOqANZOOU", + "address": "1535 Los Altos Pkwy, Sparks, NV 89436, USA", + "name": "Eagle Fitness", + "locationConfidence": 0.6847515 + }, { + "latitudeE7": 395868079, + "longitudeE7": -1197164556, + "placeId": "ChIJ2_txgHM5mYARAcMEc_Apzaw", + "address": "5255 Vista Blvd, Sparks, NV 89436, USA", + "name": "Lighthouse Coffee", + "locationConfidence": 0.5519052 + }, { + "latitudeE7": 395876993, + "longitudeE7": -1197161111, + "placeId": "ChIJpSDjb3Q5mYARYXwfYdWa1FM", + "address": "5275 Vista Blvd, Sparks, NV 89436, USA", + "name": "Spanish Springs Veterinary", + "locationConfidence": 0.25160956 + }, { + "latitudeE7": 395875057, + "longitudeE7": -1197151857, + "placeId": "ChIJv4l6c3Q5mYAROMnUPvi1aJQ", + "address": "5245 Vista Blvd, Sparks, NV 89436, USA", + "name": "The UPS Store", + "locationConfidence": 0.16230378 + }, { + "latitudeE7": 395867640, + "longitudeE7": -1197153590, + "placeId": "ChIJvWKNi3M5mYARqTkeP0YRMpE", + "address": "5225 Vista Blvd, Sparks, NV 89436, USA", + "name": "Pizza Plus - Vista", + "locationConfidence": 0.1556598 + }, { + "latitudeE7": 395875891, + "longitudeE7": -1197152579, + "placeId": "ChIJxassC3Q5mYARJvniUl_1i9c", + "address": "5245 Vista Blvd, Sparks, NV 89436, USA", + "name": "Sierra Mart \u0026 Liquor", + "locationConfidence": 0.1186172 + }, { + "latitudeE7": 395869280, + "longitudeE7": -1197164280, + "placeId": "ChIJ-8r1gHM5mYARiaNEFdKhtU8", + "address": "5255 Vista Blvd c1, Sparks, NV 89436, USA", + "name": "Essenza Salon \u0026 Spa", + "locationConfidence": 0.11081519 + }, { + "latitudeE7": 395875891, + "longitudeE7": -1197152580, + "placeId": "ChIJxassC3Q5mYARfSMUxplSuYs", + "address": "5245 Vista Blvd # F3, Sparks, NV 89436, USA", + "name": "L Bar Nevada", + "locationConfidence": 0.10397103 + }, { + "latitudeE7": 395877334, + "longitudeE7": -1197159178, + "placeId": "ChIJpSDjb3Q5mYARuEbohfY41Uw", + "address": "5275 Vista Blvd a3, Sparks, NV 89436, USA", + "name": "Shin Gan Dojo", + "locationConfidence": 0.08276174 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 86, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-08T03:39:35.052Z", + "endTimestamp": "2013-06-08T03:45:59.461Z" + }, + "distance": 4433, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 395879974, + "lngE7": -1197168197 + }, { + "latE7": 395322990, + "lngE7": -1197219848 + }], + "source": "BACKFILLED", + "distanceMeters": 7981.054554750653, + "travelMode": "DRIVE", + "confidence": 0.9601733083975197 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-08T03:45:59.461Z", + "endTimestamp": "2013-06-08T03:51:48.182Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 395875205, + "lngE7": -1197213287 + }, { + "latE7": 395305900, + "lngE7": -1197231903 + }, { + "latE7": 395314369, + "lngE7": -1197228240 + }], + "source": "BACKFILLED", + "distanceMeters": 7218.482985998467, + "travelMode": "WALK", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 395305824, + "lngE7": -1197227173, + "accuracyMeters": 87, + "timestamp": "2013-06-08T03:54:59.456Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 395317015, + "longitudeE7": -1197229487, + "placeId": "ChIJ2xyZTpU-mYARrCdlCRBW4ZQ", + "address": "1170 Scheels Dr, Sparks, Nevada 89434, United States", + "name": "Galaxy Sparks IMAX Luxury+ Theatre", + "locationConfidence": 38.953533, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-08T03:51:48.182Z", + "endTimestamp": "2013-06-08T04:51:01.212Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 395313262, + "centerLngE7": -1197226132, + "visitConfidence": 70, + "otherCandidateLocations": [{ + "latitudeE7": 395310200, + "longitudeE7": -1197226960, + "placeId": "ChIJIxqpMOs-mYARyMY93FobQyA", + "address": "1180 Scheels Drive Ste. B-117, Sparks, NV 89434, USA", + "name": "Grimaldi\u0027s Pizzeria", + "locationConfidence": 16.982594 + }, { + "latitudeE7": 395337042, + "longitudeE7": -1197188194, + "placeId": "ChIJyWg1Eus-mYARF-cr0tUY-38", + "address": "1310 Scheels Drive, Sparks, NV 89434, USA", + "name": "The Outlets at Legends", + "locationConfidence": 14.847855, + "isCurrentLocation": true + }, { + "latitudeE7": 395306955, + "longitudeE7": -1197217094, + "placeId": "ChIJHefXBOs-mYARYT-GUi8dUKU", + "address": "1200 Scheels Drive, Sparks, NV 89434, USA", + "name": "SCHEELS", + "locationConfidence": 14.351801 + }, { + "latitudeE7": 395320776, + "longitudeE7": -1197213874, + "placeId": "ChIJkdHS7eo-mYARJE4nEYnh8AU", + "address": "1330 Scheels Drive SUITE 250, Sparks, NV 89434, USA", + "name": "O’Cleary’s", + "locationConfidence": 2.7055912 + }, { + "latitudeE7": 395322917, + "longitudeE7": -1197213405, + "placeId": "ChIJB_3pL-s-mYAReH8ZvRZEudE", + "address": "1310 Scheels Drive, Sparks, NV 89434, USA", + "name": "CBQ", + "locationConfidence": 1.123805 + }, { + "latitudeE7": 395348059, + "longitudeE7": -1197305995, + "placeId": "ChIJLVp878I-mYARYLEaJBzjspU", + "address": "300 Howard Dr, Sparks, Nevada 89434, United States", + "name": "Sparks Marina Park", + "locationConfidence": 0.8183264 + }, { + "latitudeE7": 395329836, + "longitudeE7": -1197215222, + "placeId": "ChIJIzC-muo-mYARYqzdx4WRmp8", + "locationConfidence": 0.79691434, + "isCurrentLocation": true + }, { + "latitudeE7": 395307013, + "longitudeE7": -1197216188, + "placeId": "ChIJ2xyZTpU-mYAROCEatXmwvjI", + "address": "1180 Scheels Drive #B-101, Sparks, NV 89434, USA", + "name": "Direct Tools Factory Outlet", + "locationConfidence": 0.7846599 + }, { + "latitudeE7": 395310678, + "longitudeE7": -1197158879, + "placeId": "ChIJL2McZZQ-mYARCkWZv0b-qCQ", + "address": "1395 Big Fish Drive, Sparks, NV 89431, USA", + "name": "Taco Bell", + "locationConfidence": 0.7603435, + "isCurrentLocation": true + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 38, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-08T04:51:01.212Z", + "endTimestamp": "2013-06-08T04:55:05.613Z" + }, + "distance": 3740, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 395316734, + "lngE7": -1197215042 + }, { + "latE7": 395347557, + "lngE7": -1197536315 + }], + "source": "BACKFILLED", + "distanceMeters": 3771.4010911936803, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-08T04:55:05.613Z", + "endTimestamp": "2013-06-08T05:04:43.176Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 395347900, + "lngE7": -1197536392 + }, { + "latE7": 395507965, + "lngE7": -1197174453 + }, { + "latE7": 395878639, + "lngE7": -1197168807 + }], + "source": "BACKFILLED", + "distanceMeters": 8124.138978646534, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 395505028, + "lngE7": -1197172470, + "accuracyMeters": 40, + "timestamp": "2013-06-08T04:59:17.069Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 395879958, + "longitudeE7": -1197171073, + "placeId": "ChIJB23g8nQ5mYARMhdqLjkXCWY", + "address": "5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 96.78939 + }, + "duration": { + "startTimestamp": "2013-06-08T05:04:43.176Z", + "endTimestamp": "2013-06-08T16:16:11.900Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 395879353, + "centerLngE7": -1197171295, + "visitConfidence": 92, + "otherCandidateLocations": [{ + "latitudeE7": 395868079, + "longitudeE7": -1197164556, + "placeId": "ChIJ2_txgHM5mYARAcMEc_Apzaw", + "address": "5255 Vista Blvd, Sparks, NV 89436, USA", + "name": "Lighthouse Coffee", + "locationConfidence": 1.6068512 + }, { + "latitudeE7": 395847543, + "longitudeE7": -1197142148, + "placeId": "ChIJF3gEfHQ5mYARB-VOqANZOOU", + "address": "1535 Los Altos Pkwy, Sparks, NV 89436, USA", + "name": "Eagle Fitness", + "locationConfidence": 0.38881594 + }, { + "latitudeE7": 395876993, + "longitudeE7": -1197161111, + "placeId": "ChIJpSDjb3Q5mYARYXwfYdWa1FM", + "address": "5275 Vista Blvd, Sparks, NV 89436, USA", + "name": "Spanish Springs Veterinary", + "locationConfidence": 0.21947326 + }, { + "latitudeE7": 395867640, + "longitudeE7": -1197153590, + "placeId": "ChIJvWKNi3M5mYARqTkeP0YRMpE", + "address": "5225 Vista Blvd, Sparks, NV 89436, USA", + "name": "Pizza Plus - Vista", + "locationConfidence": 0.1475946 + }, { + "latitudeE7": 395875057, + "longitudeE7": -1197151857, + "placeId": "ChIJv4l6c3Q5mYAROMnUPvi1aJQ", + "address": "5245 Vista Blvd, Sparks, NV 89436, USA", + "name": "The UPS Store", + "locationConfidence": 0.14071774 + }, { + "latitudeE7": 395877334, + "longitudeE7": -1197159178, + "placeId": "ChIJpSDjb3Q5mYARuEbohfY41Uw", + "address": "5275 Vista Blvd a3, Sparks, NV 89436, USA", + "name": "Shin Gan Dojo", + "locationConfidence": 0.12288698 + }, { + "latitudeE7": 395875891, + "longitudeE7": -1197152580, + "placeId": "ChIJxassC3Q5mYARfSMUxplSuYs", + "address": "5245 Vista Blvd # F3, Sparks, NV 89436, USA", + "name": "L Bar Nevada", + "locationConfidence": 0.093747355 + }, { + "latitudeE7": 395865993, + "longitudeE7": -1197156615, + "placeId": "ChIJ0U6-j3M5mYARjVYGxA-B4os", + "address": "5215 Vista Blvd, Sparks, NV 89436, USA", + "name": "Oak Tavern Bar and Grill", + "locationConfidence": 0.07263847 + }, { + "latitudeE7": 395870116, + "longitudeE7": -1197151647, + "placeId": "ChIJS2M4inM5mYARMcVY5QiV1V0", + "address": "5235 Vista Blvd, Sparks, NV 89436, USA", + "name": "El Dorado Savings Bank", + "locationConfidence": 0.057273854 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 85, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 395879958, + "longitudeE7": -1197171073, + "placeId": "ChIJB23g8nQ5mYARMhdqLjkXCWY", + "address": "5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 96.78939 + }, + "endLocation": { + "latitudeE7": 395306955, + "longitudeE7": -1197217094, + "placeId": "ChIJHefXBOs-mYARYT-GUi8dUKU", + "address": "1200 Scheels Drive, Sparks, Nevada 89434, United States", + "name": "SCHEELS", + "locationConfidence": 66.13029, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-08T16:16:32.318Z", + "endTimestamp": "2013-06-08T16:33:48.651Z" + }, + "distance": 6930, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 395879096, + "lngE7": -1197168655 + }, { + "latE7": 395301017, + "lngE7": -1197213516 + }], + "source": "BACKFILLED", + "distanceMeters": 7913.330989375811, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 395306955, + "longitudeE7": -1197217094, + "placeId": "ChIJHefXBOs-mYARYT-GUi8dUKU", + "address": "1200 Scheels Drive, Sparks, Nevada 89434, United States", + "name": "SCHEELS", + "locationConfidence": 66.13029, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-08T16:33:48.651Z", + "endTimestamp": "2013-06-08T16:58:39.334Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 395307174, + "centerLngE7": -1197217200, + "visitConfidence": 78, + "otherCandidateLocations": [{ + "latitudeE7": 395337042, + "longitudeE7": -1197188194, + "placeId": "ChIJyWg1Eus-mYARF-cr0tUY-38", + "address": "1310 Scheels Drive, Sparks, NV 89434, USA", + "name": "The Outlets at Legends", + "locationConfidence": 8.420857, + "isCurrentLocation": true + }, { + "latitudeE7": 395317015, + "longitudeE7": -1197229487, + "placeId": "ChIJ2xyZTpU-mYARrCdlCRBW4ZQ", + "address": "1170 Scheels Drive, Sparks, NV 89434, USA", + "name": "Galaxy Sparks IMAX Luxury+ Theatre", + "locationConfidence": 7.6792326, + "isCurrentLocation": true + }, { + "latitudeE7": 395306596, + "longitudeE7": -1197213572, + "placeId": "ChIJHefXBOs-mYARJJGEAlR3Ywk", + "name": "Armed \u0026 Safe Firearms Training", + "locationConfidence": 2.5531788, + "isCurrentLocation": true + }, { + "latitudeE7": 395307013, + "longitudeE7": -1197216188, + "placeId": "ChIJ2xyZTpU-mYAROCEatXmwvjI", + "address": "1180 Scheels Drive #B-101, Sparks, NV 89434, USA", + "name": "Direct Tools Factory Outlet", + "locationConfidence": 1.8002099, + "isCurrentLocation": true + }, { + "latitudeE7": 395306812, + "longitudeE7": -1197218714, + "placeId": "ChIJV9WwBOs-mYARc9ysFv19yew", + "address": "1200 Scheels Drive, Sparks, NV 89434, USA", + "name": "Ginnas Cafe", + "locationConfidence": 1.4618119, + "isCurrentLocation": true + }, { + "latitudeE7": 395314062, + "longitudeE7": -1197213665, + "placeId": "ChIJyWg1Eus-mYAR9wG_UNNQK6w", + "address": "1310 Scheels Drive C-160, Sparks, NV 89434, USA", + "name": "Fresh Berry Frozen Yogurt Cafe", + "locationConfidence": 1.2355646, + "isCurrentLocation": true + }, { + "latitudeE7": 395310200, + "longitudeE7": -1197226960, + "placeId": "ChIJIxqpMOs-mYARyMY93FobQyA", + "address": "1180 Scheels Drive Ste. B-117, Sparks, NV 89434, USA", + "name": "Grimaldi\u0027s Pizzeria", + "locationConfidence": 1.0128492 + }, { + "latitudeE7": 395306710, + "longitudeE7": -1197216500, + "placeId": "ChIJHefXBOs-mYARo_ulAAHttUA", + "name": "U.S. Bank ATM", + "locationConfidence": 0.75504446 + }, { + "latitudeE7": 395302776, + "longitudeE7": -1197218044, + "placeId": "ChIJsWZ3Ces-mYARyXoXKyLBXTU", + "locationConfidence": 0.74972147, + "isCurrentLocation": true + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 61, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-08T17:07:41.407Z", + "endTimestamp": "2013-06-08T18:21:46.851Z" + }, + "distance": 128393, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 395301589, + "lngE7": -1197211532 + }, { + "latE7": 401747894, + "lngE7": -1184784622 + }], + "source": "BACKFILLED", + "distanceMeters": 140327.3131659119, + "travelMode": "DRIVE", + "confidence": 0.8272779193420629 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-08T18:21:46.851Z", + "endTimestamp": "2013-06-08T18:33:55.231Z" + }, + "distance": 601, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-08T18:38:43.485Z", + "endTimestamp": "2013-06-08T19:38:13.640Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 401799507, + "lngE7": -1184761047 + }, { + "latE7": 409730796, + "lngE7": -1177341766 + }], + "source": "BACKFILLED", + "distanceMeters": 118196.20776645688, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 409735400, + "longitudeE7": -1177353090, + "placeId": "ChIJk7Gdm0rjoIAROwIAUXAcBaQ", + "address": "50 W Winnemucca Blvd # 1, Winnemucca, NV 89445-3174, United States", + "name": "Winnemucca Convention \u0026 Visitors Center", + "locationConfidence": 7.639284 + }, + "duration": { + "startTimestamp": "2013-06-08T19:38:13.640Z", + "endTimestamp": "2013-06-08T20:21:35.035Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 409737620, + "centerLngE7": -1177343493, + "visitConfidence": 69, + "otherCandidateLocations": [{ + "latitudeE7": 409742557, + "longitudeE7": -1177344303, + "placeId": "ChIJv6JKYErjoIARHEmKWfAeJ4U", + "address": "47 E Winnemucca Blvd, Winnemucca, NV 89445, USA", + "name": "Las Margaritas Mexican", + "locationConfidence": 7.278898 + }, { + "latitudeE7": 409741085, + "longitudeE7": -1177345646, + "placeId": "ChIJ3-7YiUrjoIARj_4xrFrj6Gc", + "address": "45 E Winnemucca Blvd, Winnemucca, NV 89445, USA", + "name": "Third Street Bistro", + "locationConfidence": 7.1978807 + }, { + "latitudeE7": 409735195, + "longitudeE7": -1177345733, + "placeId": "ChIJOxuvf0rjoIARd6iRSlIrU38", + "address": "311 S Bridge St, Winnemucca, NV 89445, USA", + "name": "Financial Horizons Credit Union", + "locationConfidence": 4.247692 + }, { + "latitudeE7": 409736259, + "longitudeE7": -1177354131, + "placeId": "ChIJOcIqm0rjoIARf8TdzTtPt1o", + "address": "30 W Winnemucca Blvd, Winnemucca, NV 89445, USA", + "name": "Buckaroo Hall of Fame", + "locationConfidence": 3.9429455 + }, { + "latitudeE7": 409735751, + "longitudeE7": -1177343092, + "placeId": "ChIJx5xkhkrjoIAR5n6iMHXjMfk", + "address": "311 S Bridge St, Winnemucca, NV 89445, USA", + "name": "Brides Forever \u0026 More", + "locationConfidence": 3.5399246 + }, { + "latitudeE7": 409736259, + "longitudeE7": -1177354131, + "placeId": "ChIJOcIqm0rjoIARiejbkeM1uM0", + "address": "30 W Winnemucca Blvd, Winnemucca, NV 89445, USA", + "name": "Winnemucca Visitors Center", + "locationConfidence": 3.5044534 + }, { + "latitudeE7": 409733157, + "longitudeE7": -1177343361, + "placeId": "ChIJ0WmCgErjoIAR0Qt6GrxtceQ", + "address": "341 S Bridge St, Winnemucca, NV 89445, USA", + "name": "Northern Nevada Trading Co", + "locationConfidence": 2.2846637 + }, { + "latitudeE7": 409738378, + "longitudeE7": -1177343174, + "placeId": "ChIJpUz2YErjoIARuUO6hq7boL0", + "address": "49 E Winnemucca Blvd, Winnemucca, NV 89445, USA", + "name": "Shore-Line", + "locationConfidence": 2.0143268 + }, { + "latitudeE7": 409738459, + "longitudeE7": -1177347859, + "placeId": "ChIJx8P0jkrjoIARVtVhmc9Fv3E", + "address": "259 S Bridge St, Winnemucca, NV 89445, USA", + "name": "Ben\u0027s Discount Liquors", + "locationConfidence": 1.8547187 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 13, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-08T20:21:35.035Z", + "endTimestamp": "2013-06-08T20:26:26.277Z" + }, + "distance": 263, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 409732971, + "lngE7": -1177344818 + }, { + "latE7": 409728012, + "lngE7": -1177357101 + }, { + "latE7": 409729652, + "lngE7": -1177340164 + }], + "source": "BACKFILLED", + "distanceMeters": 53.71106656230819, + "travelMode": "WALK", + "confidence": 0.8399451078348017 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 409723740, + "lngE7": -1177355042, + "accuracyMeters": 94, + "timestamp": "2013-06-08T20:22:55.722Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-08T20:29:29.026Z", + "endTimestamp": "2013-06-08T22:25:09.413Z" + }, + "distance": 179718, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 409728851, + "lngE7": -1177339019 + }, { + "latE7": 409517211, + "lngE7": -1155932540 + }], + "source": "BACKFILLED", + "distanceMeters": 219983.8909607474, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 409554718, + "longitudeE7": -1155616455 + }, + "endLocation": { + "latitudeE7": 407404935, + "longitudeE7": -1140736971 + }, + "duration": { + "startTimestamp": "2013-06-08T22:38:59.831Z", + "endTimestamp": "2013-06-09T00:07:27.752Z" + }, + "distance": 139820, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 409554405, + "lngE7": -1155644836 + }, { + "latE7": 407385215, + "lngE7": -1140776672 + }], + "source": "BACKFILLED", + "distanceMeters": 151617.5071909837, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 407404935, + "longitudeE7": -1140736971 + }, + "endLocation": { + "latitudeE7": 407393892, + "longitudeE7": -1140776678 + }, + "duration": { + "startTimestamp": "2013-06-09T00:07:27.752Z", + "endTimestamp": "2013-06-09T00:11:57.463Z" + }, + "distance": 306, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 407385215, + "lngE7": -1140776672 + }, { + "latE7": 407393226, + "lngE7": -1140772857 + }], + "source": "BACKFILLED", + "distanceMeters": 95.30270078893969, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 407393892, + "longitudeE7": -1140776678 + }, + "endLocation": { + "latitudeE7": 407403815, + "longitudeE7": -1140735254 + }, + "duration": { + "startTimestamp": "2013-06-09T00:11:57.463Z", + "endTimestamp": "2013-06-09T00:25:37.086Z" + }, + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "simplifiedRawPath": { + "points": [{ + "latE7": 407386426, + "lngE7": -1140779161, + "accuracyMeters": 40, + "timestamp": "2013-06-09T00:16:02.561Z" + }, { + "latE7": 407393882, + "lngE7": -1140776680, + "accuracyMeters": 36, + "timestamp": "2013-06-09T00:24:00.637Z" + }], + "source": "BACKFILLED", + "distanceMeters": 537.0781173139821 + } + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-09T00:25:37.086Z", + "endTimestamp": "2013-06-09T03:45:36.465Z" + }, + "distance": 251929, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 407393226, + "lngE7": -1140772857 + }, { + "latE7": 407166252, + "lngE7": -1121222305 + }, { + "latE7": 409913673, + "lngE7": -1118967285 + }, { + "latE7": 409958801, + "lngE7": -1119047317 + }, { + "latE7": 410510520, + "lngE7": -1122470092 + }, { + "latE7": 410404510, + "lngE7": -1122598190 + }], + "source": "BACKFILLED", + "distanceMeters": 259524.55015516016, + "travelMode": "DRIVE", + "confidence": 0.9798504924561303 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 407165642, + "lngE7": -1121222000, + "accuracyMeters": 20, + "timestamp": "2013-06-09T02:26:08.321Z" + }, { + "latE7": 409913292, + "lngE7": -1118967590, + "accuracyMeters": 5, + "timestamp": "2013-06-09T02:57:22.308Z" + }, { + "latE7": 409958725, + "lngE7": -1119047623, + "accuracyMeters": 10, + "timestamp": "2013-06-09T02:58:33.376Z" + }, { + "latE7": 410511017, + "lngE7": -1122470169, + "accuracyMeters": 10, + "timestamp": "2013-06-09T03:35:36.668Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-09T11:34:08.905Z", + "endTimestamp": "2013-06-09T12:45:07.848Z" + }, + "distance": 766, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 410430512, + "longitudeE7": -1122513357 + }, + "endLocation": { + "latitudeE7": 410878164, + "longitudeE7": -1120302064 + }, + "duration": { + "startTimestamp": "2013-06-09T13:31:55.421Z", + "endTimestamp": "2013-06-09T14:44:54.189Z" + }, + "distance": 22924, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 410430870, + "lngE7": -1122512817 + }, { + "latE7": 410874633, + "lngE7": -1120302047 + }], + "source": "BACKFILLED", + "distanceMeters": 21899.62340293005, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-09T14:51:28.506Z", + "endTimestamp": "2013-06-09T15:27:57.843Z" + }, + "distance": 50314, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 410862121, + "lngE7": -1119839248 + }, { + "latE7": 407166175, + "lngE7": -1119173889 + }, { + "latE7": 407241020, + "lngE7": -1119086914 + }, { + "latE7": 407600097, + "lngE7": -1119168243 + }], + "source": "BACKFILLED", + "distanceMeters": 40826.70759067163, + "travelMode": "DRIVE", + "confidence": 0.9735938766869023 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 407166176, + "lngE7": -1119172821, + "accuracyMeters": 5, + "timestamp": "2013-06-09T15:21:56.278Z" + }, { + "latE7": 407241096, + "lngE7": -1119087372, + "accuracyMeters": 6, + "timestamp": "2013-06-09T15:23:04.294Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-09T15:27:57.843Z", + "endTimestamp": "2013-06-09T15:58:32.560Z" + }, + "distance": 4766, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 407600097, + "lngE7": -1119167785 + }, { + "latE7": 407599182, + "lngE7": -1118934097 + }, { + "latE7": 407688522, + "lngE7": -1118853912 + }, { + "latE7": 407679634, + "lngE7": -1118893585 + }], + "source": "BACKFILLED", + "distanceMeters": 3032.7596398332857, + "travelMode": "WALK", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 407601585, + "lngE7": -1118934097, + "accuracyMeters": 61, + "timestamp": "2013-06-09T15:33:04.115Z" + }, { + "latE7": 407687607, + "lngE7": -1118854370, + "accuracyMeters": 10, + "timestamp": "2013-06-09T15:36:57.116Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-09T16:13:33.098Z", + "endTimestamp": "2013-06-09T16:16:33.140Z" + }, + "distance": 424, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 407679634, + "lngE7": -1118893585 + }, { + "latE7": 407661476, + "lngE7": -1118939208 + }], + "source": "BACKFILLED", + "distanceMeters": 565.7986956181397, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 407677086, + "longitudeE7": -1118870625, + "placeId": "ChIJN_AYog71UocRDFFmdlj1dCM", + "address": "135 East 100 South, Salt Lake City, Utah 84111, United States", + "name": "Harmons Grocery - City Creek", + "locationConfidence": 14.3222685 + }, + "duration": { + "startTimestamp": "2013-06-09T16:19:33.174Z", + "endTimestamp": "2013-06-09T16:34:48.854Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 407657200, + "centerLngE7": -1118872000, + "visitConfidence": 33, + "otherCandidateLocations": [{ + "latitudeE7": 407643116, + "longitudeE7": -1118885851, + "placeId": "ChIJ4fx8Pw71UocRF_BAy0cmwJE", + "address": "220 S State St, Salt Lake City, UT 84111, USA", + "name": "Salt Lake City Marriott City Center", + "locationConfidence": 14.257336 + }, { + "latitudeE7": 407608911, + "longitudeE7": -1118831913, + "placeId": "ChIJcYT0dQ71UocR72j73nwGqiQ", + "address": "275 E 400 S, Salt Lake City, UT 84111, USA", + "name": "Oasis Games", + "locationConfidence": 4.2937613 + }, { + "latitudeE7": 407653477, + "longitudeE7": -1118878019, + "placeId": "ChIJs_NyZg71UocReTK3YFPlOkg", + "locationConfidence": 3.7289822 + }, { + "latitudeE7": 407678111, + "longitudeE7": -1118895249, + "placeId": "ChIJNf64Jw_1UocRYrpgnkLjaCk", + "address": "65 Regent St, Salt Lake City, UT 84111, USA", + "name": "The Cheesecake Factory", + "locationConfidence": 3.5088217 + }, { + "latitudeE7": 407653000, + "longitudeE7": -1118885850, + "placeId": "ChIJk693Ww71UocRXx9GJPzggUw", + "address": "75 E 200 S, Salt Lake City, UT 84111, USA", + "name": "Carl\u0027s Jr", + "locationConfidence": 1.9548368 + }, { + "latitudeE7": 407652655, + "longitudeE7": -1118862792, + "placeId": "ChIJuaBU2Q31UocR_-hgNOi1ShM", + "address": "155 E 200 S, Salt Lake City, UT 84111, USA", + "name": "Bar-X", + "locationConfidence": 1.5092056 + }, { + "latitudeE7": 407632660, + "longitudeE7": -1118872413, + "placeId": "ChIJrS_p5hH1UocRy7NXtBP9YBA", + "address": "111 E Broadway #170, Salt Lake City, UT 84111, USA", + "name": "The Copper Onion", + "locationConfidence": 1.3472767 + }, { + "latitudeE7": 407657845, + "longitudeE7": -1118885130, + "placeId": "ChIJjQ_M9Q71UocRD-L-MEG-cvc", + "address": "156 S State St, Salt Lake City, UT 84111, USA", + "name": "Jeanie\u0027s Smoke Shop", + "locationConfidence": 1.3365445 + }, { + "latitudeE7": 407651820, + "longitudeE7": -1118872786, + "placeId": "ChIJH7lbeNH1UocR8wRvaDGdty0", + "address": "123 E 200 S, Salt Lake City, UT 84111, USA", + "name": "Cancun Cafe", + "locationConfidence": 1.0167291 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 18, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-09T17:11:00.855Z", + "endTimestamp": "2013-06-09T17:49:20.139Z" + }, + "distance": 31019, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 407663116, + "lngE7": -1118936920 + }, { + "latE7": 407683563, + "lngE7": -1118909988 + }, { + "latE7": 407650108, + "lngE7": -1118811721 + }, { + "latE7": 407554397, + "lngE7": -1115768127 + }], + "source": "BACKFILLED", + "distanceMeters": 37698.08793367335, + "travelMode": "DRIVE", + "confidence": 0.9958089454316937 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 407681313, + "lngE7": -1118906784, + "accuracyMeters": 50, + "timestamp": "2013-06-09T17:15:00.800Z" + }, { + "latE7": 407646790, + "lngE7": -1118812408, + "accuracyMeters": 76, + "timestamp": "2013-06-09T17:19:04.156Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 409828423, + "longitudeE7": -1114165453 + }, + "endLocation": { + "latitudeE7": 417267005, + "longitudeE7": -1077284546 + }, + "duration": { + "startTimestamp": "2013-06-09T18:24:26.892Z", + "endTimestamp": "2013-06-09T21:44:07.529Z" + }, + "distance": 353499, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 409831886, + "lngE7": -1114168395 + }, { + "latE7": 417267227, + "lngE7": -1077283401 + }], + "source": "BACKFILLED", + "distanceMeters": 345515.20857850317, + "travelMode": "DRIVE", + "confidence": 0.893109413942004 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 417841960, + "longitudeE7": -1073685835 + }, + "endLocation": { + "latitudeE7": 411464653, + "longitudeE7": -1047691306 + }, + "duration": { + "startTimestamp": "2013-06-09T21:50:49.410Z", + "endTimestamp": "2013-06-10T00:41:06.215Z" + }, + "distance": 258207, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 417832527, + "lngE7": -1073695678 + }, { + "latE7": 411464653, + "lngE7": -1047691574 + }], + "source": "BACKFILLED", + "distanceMeters": 257485.28339531625, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-10T01:00:48.116Z", + "endTimestamp": "2013-06-10T01:36:52.005Z" + }, + "distance": 66029, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 411464653, + "lngE7": -1047691574 + }, { + "latE7": 412931289, + "lngE7": -1055339050 + }], + "source": "BACKFILLED", + "distanceMeters": 80104.54276872029, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 412930450, + "longitudeE7": -1055342090 + }, + "endLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "duration": { + "startTimestamp": "2013-06-10T01:46:50.705Z", + "endTimestamp": "2013-06-10T02:07:44.121Z" + }, + "distance": 10752, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 412931289, + "lngE7": -1055339050 + }, { + "latE7": 412957344, + "lngE7": -1055445556 + }], + "source": "BACKFILLED", + "distanceMeters": 1049.9036098170882, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-10T02:07:44.121Z", + "endTimestamp": "2013-06-10T02:16:49.622Z" + }, + "distance": 297, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "endLocation": { + "latitudeE7": 411109587, + "longitudeE7": -1048016469 + }, + "duration": { + "startTimestamp": "2013-06-10T14:58:34.512Z", + "endTimestamp": "2013-06-10T15:53:53.555Z" + }, + "distance": 58134, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 412957344, + "lngE7": -1055445556 + }, { + "latE7": 412552337, + "lngE7": -1054208984 + }, { + "latE7": 411891212, + "lngE7": -1052117919 + }, { + "latE7": 411111106, + "lngE7": -1048016433 + }], + "source": "BACKFILLED", + "distanceMeters": 75497.09869092127, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 412552528, + "lngE7": -1054209061, + "accuracyMeters": 10, + "timestamp": "2013-06-10T15:05:42.048Z" + }, { + "latE7": 411891022, + "lngE7": -1052120056, + "accuracyMeters": 10, + "timestamp": "2013-06-10T15:22:02.038Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 411109587, + "longitudeE7": -1048016469 + }, + "endLocation": { + "latitudeE7": 411577586, + "longitudeE7": -1048033232 + }, + "duration": { + "startTimestamp": "2013-06-10T15:53:53.555Z", + "endTimestamp": "2013-06-10T16:44:07.677Z" + }, + "distance": 12431, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 411111106, + "lngE7": -1048016433 + }, { + "latE7": 411464653, + "lngE7": -1047691574 + }, { + "latE7": 411583824, + "lngE7": -1048032455 + }], + "source": "BACKFILLED", + "distanceMeters": 8052.034305571874, + "travelMode": "WALK", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 411464653, + "lngE7": -1047691269, + "accuracyMeters": 30, + "timestamp": "2013-06-10T16:10:19.289Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 411577586, + "longitudeE7": -1048033232 + }, + "endLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "duration": { + "startTimestamp": "2013-06-10T16:45:52.207Z", + "endTimestamp": "2013-06-10T18:09:40.466Z" + }, + "distance": 60400, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 411593208, + "lngE7": -1048035812 + }, { + "latE7": 412957344, + "lngE7": -1055445556 + }], + "source": "BACKFILLED", + "distanceMeters": 80482.83561434528, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 412494729, + "longitudeE7": -1054444403 + }, + "endLocation": { + "latitudeE7": 412521258, + "longitudeE7": -1054150660 + }, + "duration": { + "startTimestamp": "2013-06-10T19:17:02.822Z", + "endTimestamp": "2013-06-10T19:29:39.236Z" + }, + "distance": 518, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 412507820, + "lngE7": -1054381027 + }, { + "latE7": 412520446, + "lngE7": -1054151840 + }], + "source": "BACKFILLED", + "distanceMeters": 4397.863415039816, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 412522816, + "longitudeE7": -1054152004 + }, + "endLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "duration": { + "startTimestamp": "2013-06-10T19:37:37.898Z", + "endTimestamp": "2013-06-10T19:44:31.221Z" + }, + "distance": 401, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "endLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "duration": { + "startTimestamp": "2013-06-10T19:44:31.221Z", + "endTimestamp": "2013-06-10T19:55:32.523Z" + }, + "distance": 642, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "endLocation": { + "latitudeE7": 412491162, + "longitudeE7": -1054436005 + }, + "duration": { + "startTimestamp": "2013-06-10T19:55:32.523Z", + "endTimestamp": "2013-06-10T20:03:17.504Z" + }, + "distance": 1355, + "confidence": "HIGH", + "activities": [{ + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 412957344, + "lngE7": -1055445556 + }, { + "latE7": 412505683, + "lngE7": -1054379501 + }], + "source": "BACKFILLED", + "distanceMeters": 14014.721936274309, + "travelMode": "BICYCLE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "endLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "duration": { + "startTimestamp": "2013-06-10T21:54:16.965Z", + "endTimestamp": "2013-06-10T22:17:00.774Z" + }, + "distance": 1004, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "endLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "duration": { + "startTimestamp": "2013-06-10T22:22:32.878Z", + "endTimestamp": "2013-06-10T22:48:24.976Z" + }, + "distance": 1356, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-11T09:43:08.527Z", + "endTimestamp": "2013-06-11T13:54:13.492Z" + }, + "distance": 8631, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 412958236, + "longitudeE7": -1055445039 + }, + "endLocation": { + "latitudeE7": 412998697, + "longitudeE7": -1055555486 + }, + "duration": { + "startTimestamp": "2013-06-11T13:54:13.492Z", + "endTimestamp": "2013-06-11T14:27:16.710Z" + }, + "distance": 11103, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 412957344, + "lngE7": -1055445556 + }, { + "latE7": 412981834, + "lngE7": -1055532226 + }], + "source": "BACKFILLED", + "distanceMeters": 1724.542930520361, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 412998272, + "longitudeE7": -1055561032 + }, + "endLocation": { + "latitudeE7": 405854330, + "longitudeE7": -1050769965 + }, + "duration": { + "startTimestamp": "2013-06-11T14:54:23.553Z", + "endTimestamp": "2013-06-11T16:46:48.680Z" + }, + "distance": 70587, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 412981834, + "lngE7": -1055532226 + }, { + "latE7": 405815048, + "lngE7": -1050605316 + }, { + "latE7": 405800895, + "lngE7": -1050750732 + }, { + "latE7": 405854339, + "lngE7": -1050769348 + }], + "source": "BACKFILLED", + "distanceMeters": 112432.84187572383, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 405815048, + "lngE7": -1050605316, + "accuracyMeters": 5, + "timestamp": "2013-06-11T16:37:07.727Z" + }, { + "latE7": 405800629, + "lngE7": -1050750732, + "accuracyMeters": 67, + "timestamp": "2013-06-11T16:39:13.459Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 405854857, + "longitudeE7": -1050751124 + }, + "endLocation": { + "latitudeE7": 405929358, + "longitudeE7": -1050584332 + }, + "duration": { + "startTimestamp": "2013-06-11T16:57:08.697Z", + "endTimestamp": "2013-06-11T17:19:04.305Z" + }, + "distance": 2023, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 405856094, + "lngE7": -1050751113 + }, { + "latE7": 405929145, + "lngE7": -1050577163 + }], + "source": "BACKFILLED", + "distanceMeters": 2185.1448334080146, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 405929358, + "longitudeE7": -1050584332 + }, + "endLocation": { + "latitudeE7": 405943783, + "longitudeE7": -1050575029 + }, + "duration": { + "startTimestamp": "2013-06-11T17:19:04.305Z", + "endTimestamp": "2013-06-11T17:31:43.401Z" + }, + "distance": 770, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 405929145, + "lngE7": -1050577774 + }, { + "latE7": 405943794, + "lngE7": -1050576248 + }], + "source": "BACKFILLED", + "distanceMeters": 172.51601607164537, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-11T17:31:43.401Z", + "endTimestamp": "2013-06-11T17:57:00.301Z" + }, + "distance": 13809, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 405943794, + "lngE7": -1050576858 + }, { + "latE7": 405226554, + "lngE7": -1049873504 + }], + "source": "BACKFILLED", + "distanceMeters": 13109.700811960223, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-11T18:00:04.631Z", + "endTimestamp": "2013-06-11T18:12:26.089Z" + }, + "distance": 242, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-11T18:16:01.373Z", + "endTimestamp": "2013-06-11T18:33:48.245Z" + }, + "distance": 15864, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 403612250, + "longitudeE7": -1049859304 + }, + "endLocation": { + "latitudeE7": 396515575, + "longitudeE7": -1048504373 + }, + "duration": { + "startTimestamp": "2013-06-11T18:33:48.245Z", + "endTimestamp": "2013-06-11T19:29:27.072Z" + }, + "distance": 87153, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 403613891, + "lngE7": -1049855194 + }, { + "latE7": 397751197, + "lngE7": -1048597488 + }, { + "latE7": 396579399, + "lngE7": -1048419265 + }], + "source": "BACKFILLED", + "distanceMeters": 93474.74225101245, + "travelMode": "DRIVE", + "confidence": 0.9938642173061917 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 397750969, + "lngE7": -1048597488, + "accuracyMeters": 5, + "timestamp": "2013-06-11T19:13:56.421Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-11T19:29:27.072Z", + "endTimestamp": "2013-06-11T23:15:03.444Z" + }, + "distance": 747, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396559547, + "longitudeE7": -1048506819 + }, + "endLocation": { + "latitudeE7": 396957465, + "longitudeE7": -1050771049 + }, + "duration": { + "startTimestamp": "2013-06-11T23:47:37.753Z", + "endTimestamp": "2013-06-12T00:47:30.345Z" + }, + "distance": 23549, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396560058, + "lngE7": -1048507080 + }, { + "latE7": 396616897, + "lngE7": -1048434371 + }, { + "latE7": 396535186, + "lngE7": -1050508499 + }, { + "latE7": 396548347, + "lngE7": -1050531997 + }, { + "latE7": 396957740, + "lngE7": -1050776138 + }], + "source": "BACKFILLED", + "distanceMeters": 29951.836686856415, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 396613274, + "lngE7": -1048434372, + "accuracyMeters": 41, + "timestamp": "2013-06-11T23:51:03.085Z" + }, { + "latE7": 396533432, + "lngE7": -1050506821, + "accuracyMeters": 10, + "timestamp": "2013-06-12T00:32:48.424Z" + }, { + "latE7": 396548386, + "lngE7": -1050530243, + "accuracyMeters": 10, + "timestamp": "2013-06-12T00:33:49.541Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 396948955, + "longitudeE7": -1050787783, + "placeId": "ChIJqW29QP2Aa4cR-tiurJP89x8", + "address": "1275 S Teller St, Lakewood, CO 80232, USA", + "name": "O\u0027Connell Middle School", + "locationConfidence": 33.869743 + }, + "duration": { + "startTimestamp": "2013-06-12T00:56:52.103Z", + "endTimestamp": "2013-06-12T02:20:28.860Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 396957912, + "centerLngE7": -1050776546, + "visitConfidence": 36, + "otherCandidateLocations": [{ + "latitudeE7": 396942360, + "longitudeE7": -1050773765, + "placeId": "ChIJwU_MRPyAa4cRz8jF0GV53ho", + "address": "1295 S Reed St, Lakewood, CO 80232, USA", + "name": "Lakewood Link Recreation Center", + "locationConfidence": 29.153141, + "isCurrentLocation": true + }, { + "latitudeE7": 396949730, + "longitudeE7": -1050786000, + "placeId": "ChIJqW29QP2Aa4cRCsVoML8r-8k", + "address": "1275 S Teller St, Lakewood, CO 80232, USA", + "name": "Jeffco Boys \u0026 Girls Club", + "locationConfidence": 6.732411, + "isCurrentLocation": true + }, { + "latitudeE7": 396981370, + "longitudeE7": -1050823390, + "placeId": "ChIJx-yUBR2Ba4cR4DcsBBIWbk4", + "address": "1057 S Wadsworth Blvd #20, Lakewood, CO 80226, USA", + "name": "Barley Haven HomeBrew", + "locationConfidence": 2.1184638 + }, { + "latitudeE7": 396969153, + "longitudeE7": -1050801064, + "placeId": "ChIJG5OUBR2Ba4cRVI3gtoyUOvk", + "address": "1050 S Wadsworth Blvd, Lakewood, CO 80226, USA", + "name": "Nite Owl Sports Bar \u0026 Grill", + "locationConfidence": 2.0782213 + }, { + "latitudeE7": 397114945, + "longitudeE7": -1050677448, + "placeId": "ChIJw9FuvdeGa4cRLEWfux3io4o", + "address": "6401 W Alameda Ave, Lakewood, CO 80226, USA", + "name": "Daddy Danks", + "locationConfidence": 1.5002738 + }, { + "latitudeE7": 396966880, + "longitudeE7": -1050776140, + "placeId": "ChIJj2R_z-KAa4cRE0hkAyEm6Uo", + "address": "Lakewood, CO 80226, USA", + "name": "W Mississippi Ave \u0026 S Teller St", + "locationConfidence": 0.9200399 + }, { + "latitudeE7": 396955600, + "longitudeE7": -1050800619, + "placeId": "ChIJy0UbswKBa4cRe2NQnUU0nWc", + "address": "7510 W Mississippi Ave, Lakewood, CO 80226, USA", + "name": "Sheet Metal Workers International Association", + "locationConfidence": 0.9126805 + }, { + "latitudeE7": 396952266, + "longitudeE7": -1050811066, + "placeId": "ChIJ04L-zQKBa4cRVVGl5IIYxYA", + "address": "1200 S Wadsworth Blvd, Lakewood, CO 80232, USA", + "name": "Mcdowell Benjamin D DDS", + "locationConfidence": 0.8931693 + }, { + "latitudeE7": 396965847, + "longitudeE7": -1050763552, + "placeId": "ChIJodFQ1uKAa4cRnqxxz1VpFrA", + "address": "Lakewood, CO 80226, USA", + "name": "W Mississippi Ave \u0026 S Teller St", + "locationConfidence": 0.73871195 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 34, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396958115, + "longitudeE7": -1050766678 + }, + "endLocation": { + "latitudeE7": 396942360, + "longitudeE7": -1050773765, + "placeId": "ChIJwU_MRPyAa4cRz8jF0GV53ho", + "address": "1295 S Reed St, Lakewood, Colorado 80232-5520, United States", + "name": "Lakewood Link Recreation Center", + "locationConfidence": 32.05793, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-12T02:37:08.634Z", + "endTimestamp": "2013-06-12T02:52:03.380Z" + }, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396962203, + "lngE7": -1050765457 + }, { + "latE7": 396957740, + "lngE7": -1050776138 + }], + "source": "BACKFILLED", + "distanceMeters": 232.56400098483394, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 396942360, + "longitudeE7": -1050773765, + "placeId": "ChIJwU_MRPyAa4cRz8jF0GV53ho", + "address": "1295 S Reed St, Lakewood, Colorado 80232-5520, United States", + "name": "Lakewood Link Recreation Center", + "locationConfidence": 32.05793, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-12T02:52:03.380Z", + "endTimestamp": "2013-06-12T03:03:03.540Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 396960800, + "centerLngE7": -1050771450, + "visitConfidence": 71, + "otherCandidateLocations": [{ + "latitudeE7": 396948955, + "longitudeE7": -1050787783, + "placeId": "ChIJqW29QP2Aa4cR-tiurJP89x8", + "address": "1275 S Teller St, Lakewood, CO 80232, USA", + "name": "O\u0027Connell Middle School", + "locationConfidence": 21.606604 + }, { + "latitudeE7": 396966880, + "longitudeE7": -1050776140, + "placeId": "ChIJj2R_z-KAa4cRE0hkAyEm6Uo", + "address": "Lakewood, CO 80226, USA", + "name": "W Mississippi Ave \u0026 S Teller St", + "locationConfidence": 7.6449733 + }, { + "latitudeE7": 396965847, + "longitudeE7": -1050763552, + "placeId": "ChIJodFQ1uKAa4cRnqxxz1VpFrA", + "address": "Lakewood, CO 80226, USA", + "name": "W Mississippi Ave \u0026 S Teller St", + "locationConfidence": 6.681235 + }, { + "latitudeE7": 396949730, + "longitudeE7": -1050786000, + "placeId": "ChIJqW29QP2Aa4cRCsVoML8r-8k", + "address": "1275 S Teller St, Lakewood, CO 80232, USA", + "name": "Jeffco Boys \u0026 Girls Club", + "locationConfidence": 6.0340204, + "isCurrentLocation": true + }, { + "latitudeE7": 396967000, + "longitudeE7": -1050753640, + "placeId": "ChIJYd2-MeOAa4cRkWHINgfQ_dI", + "address": "Lakewood, CO 80226, USA", + "name": "W Mississippi Ave \u0026 S Reed St", + "locationConfidence": 4.168259 + }, { + "latitudeE7": 396966070, + "longitudeE7": -1050746840, + "placeId": "ChIJk6htSuOAa4cRXeQKa3-bZtY", + "address": "Lakewood, CO 80232, USA", + "name": "W Mississippi Ave \u0026 S Reed St", + "locationConfidence": 2.7464833 + }, { + "latitudeE7": 396966920, + "longitudeE7": -1050797960, + "placeId": "ChIJwye7XB2Ba4cRSiUPQmrh4Mg", + "address": "Lakewood, CO 80226, USA", + "name": "W Mississippi Ave \u0026 S Vance St", + "locationConfidence": 2.3755038 + }, { + "latitudeE7": 396981370, + "longitudeE7": -1050823390, + "placeId": "ChIJx-yUBR2Ba4cR4DcsBBIWbk4", + "address": "1057 S Wadsworth Blvd #20, Lakewood, CO 80226, USA", + "name": "Barley Haven HomeBrew", + "locationConfidence": 1.3810159 + }, { + "latitudeE7": 396957379, + "longitudeE7": -1050753779, + "placeId": "ChIJM3QY0PyAa4cRBys-o2vjvso", + "address": "1175 S Reed St, Lakewood, CO 80232, USA", + "name": "Tie Dye Bandit", + "locationConfidence": 0.725362 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 33, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-12T03:07:13.978Z", + "endTimestamp": "2013-06-12T03:12:28.981Z" + }, + "distance": 542, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396827201, + "lngE7": -1050645523 + }, { + "latE7": 396823081, + "lngE7": -1050700149 + }], + "source": "BACKFILLED", + "distanceMeters": 508.0096558058108, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396822653, + "longitudeE7": -1050700159 + }, + "endLocation": { + "latitudeE7": 396558146, + "longitudeE7": -1048434997 + }, + "duration": { + "startTimestamp": "2013-06-12T03:12:28.981Z", + "endTimestamp": "2013-06-12T03:45:14.118Z" + }, + "distance": 29852, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396822586, + "lngE7": -1050700149 + }, { + "latE7": 396873931, + "lngE7": -1050814056 + }, { + "latE7": 397013015, + "lngE7": -1050786132 + }, { + "latE7": 396567802, + "lngE7": -1048442764 + }], + "source": "BACKFILLED", + "distanceMeters": 33769.871795084444, + "travelMode": "DRIVE", + "confidence": 0.9999956511736862 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 396873932, + "lngE7": -1050815887, + "accuracyMeters": 30, + "timestamp": "2013-06-12T03:13:50.657Z" + }, { + "latE7": 397013245, + "lngE7": -1050778809, + "accuracyMeters": 85, + "timestamp": "2013-06-12T03:17:51.916Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396558146, + "longitudeE7": -1048434997 + }, + "endLocation": { + "latitudeE7": 396556700, + "longitudeE7": -1048510404 + }, + "duration": { + "startTimestamp": "2013-06-12T03:45:14.118Z", + "endTimestamp": "2013-06-12T05:07:57.646Z" + }, + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "simplifiedRawPath": { + "points": [{ + "latE7": 396587398, + "lngE7": -1048426170, + "accuracyMeters": 9, + "timestamp": "2013-06-12T04:07:22.278Z" + }], + "source": "BACKFILLED", + "distanceMeters": 1131.7391787556041 + } + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396556700, + "longitudeE7": -1048510404 + }, + "endLocation": { + "latitudeE7": 396561030, + "longitudeE7": -1048382302 + }, + "duration": { + "startTimestamp": "2013-06-12T05:07:57.646Z", + "endTimestamp": "2013-06-12T05:43:38.921Z" + }, + "distance": 226, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396547737, + "lngE7": -1048508758 + }, { + "latE7": 396563262, + "lngE7": -1048380050 + }], + "source": "BACKFILLED", + "distanceMeters": 1250.5786318023095, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396556700, + "longitudeE7": -1048510404 + }, + "endLocation": { + "latitudeE7": 396559547, + "longitudeE7": -1048506819 + }, + "duration": { + "startTimestamp": "2013-06-12T05:43:38.921Z", + "endTimestamp": "2013-06-12T07:18:52.700Z" + }, + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "simplifiedRawPath": { + "points": [{ + "latE7": 396561030, + "lngE7": -1048382302, + "accuracyMeters": 441, + "timestamp": "2013-06-12T05:45:31.313Z" + }], + "source": "BACKFILLED", + "distanceMeters": 2195.427174058311 + } + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-12T07:18:52.700Z", + "endTimestamp": "2013-06-12T07:42:14.967Z" + }, + "distance": 1011, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396548805, + "lngE7": -1048502731 + }, { + "latE7": 396597061, + "lngE7": -1048397827 + }], + "source": "BACKFILLED", + "distanceMeters": 1701.8367655955908, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 396286634, + "longitudeE7": -1048418044, + "placeId": "ChIJO9N8BMGIbIcR53Jr1zP5s3g", + "address": "4201 South Parker Road, Aurora, Colorado 80014-4203, United States", + "name": "Cherry Creek State Park", + "locationConfidence": 71.28679 + }, + "duration": { + "startTimestamp": "2013-06-12T12:31:07.568Z", + "endTimestamp": "2013-06-12T13:33:51.694Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 396570750, + "centerLngE7": -1048474950, + "visitConfidence": 55, + "otherCandidateLocations": [{ + "latitudeE7": 396576240, + "longitudeE7": -1048460930, + "placeId": "ChIJ1dBeJeCHbIcR1T9Hv8idywA", + "address": "Aurora, CO 80014, USA", + "name": "Nine Mile Station", + "locationConfidence": 5.697053 + }, { + "latitudeE7": 396564902, + "longitudeE7": -1048549477, + "placeId": "ChIJ7ZJkDueHbIcR_Dim_wPcVLI", + "address": "Denver, CO 80014, USA", + "name": "John F Kennedy Park", + "locationConfidence": 3.4584432 + }, { + "latitudeE7": 396574881, + "longitudeE7": -1048452500, + "placeId": "ChIJM3ND1eGHbIcRmtg9LY_e-qQ", + "address": "Dam East/West, CO 80014, USA", + "name": "Nine Mile Station", + "locationConfidence": 2.5696979 + }, { + "latitudeE7": 396597525, + "longitudeE7": -1048481388, + "placeId": "ChIJm75hkOGHbIcR8ZPtKi4GcIE", + "address": "3105 S Peoria St # K, Aurora, CO 80014, USA", + "name": "Big City Burrito", + "locationConfidence": 2.450645 + }, { + "latitudeE7": 396598028, + "longitudeE7": -1048484677, + "placeId": "ChIJexKneeGHbIcRsJMvrM5otRo", + "address": "3140 S Parker Rd #7, Aurora, CO 80014, USA", + "name": "Masalaa Restaurant", + "locationConfidence": 1.650343 + }, { + "latitudeE7": 396575085, + "longitudeE7": -1048497588, + "placeId": "ChIJIeaC4eCHbIcRfKFrckzBW6Q", + "address": "3257 S Parker Rd, Aurora, CO 80014, USA", + "name": "Axis at Nine Mile Station", + "locationConfidence": 1.6082578 + }, { + "latitudeE7": 396594833, + "longitudeE7": -1048485710, + "placeId": "ChIJexKneeGHbIcRSytiQONb6ZE", + "address": "3140 S Parker Rd, Aurora, CO 80014, USA", + "name": "Dairy Queen (Treat)", + "locationConfidence": 1.3242298 + }, { + "latitudeE7": 396589912, + "longitudeE7": -1048489614, + "placeId": "ChIJDxb9DOGHbIcRJybUFn7U0V4", + "address": "3259 S Parker Rd, Aurora, CO 80014, USA", + "name": "Taco Bell", + "locationConfidence": 1.0557847 + }, { + "latitudeE7": 396604709, + "longitudeE7": -1048453283, + "placeId": "ChIJLSluaQqIbIcR5b64CreWpas", + "address": "3190 S Parker Rd, Aurora, CO 80014, USA", + "name": "Regatta Plaza Shopping Center", + "locationConfidence": 0.6737399 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 65, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-12T15:43:19.277Z", + "endTimestamp": "2013-06-12T15:51:19.342Z" + }, + "distance": 294, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-12T15:53:22.370Z", + "endTimestamp": "2013-06-12T16:03:00.792Z" + }, + "distance": 4446, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396594276, + "lngE7": -1048361587 + }, { + "latE7": 396730613, + "lngE7": -1047886276 + }], + "source": "BACKFILLED", + "distanceMeters": 5214.660893736612, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396854349, + "longitudeE7": -1047624168 + }, + "endLocation": { + "latitudeE7": 396854349, + "longitudeE7": -1047624168 + }, + "duration": { + "startTimestamp": "2013-06-12T16:12:15.580Z", + "endTimestamp": "2013-06-12T16:27:43.584Z" + }, + "distance": 2234, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-12T16:27:43.584Z", + "endTimestamp": "2013-06-12T16:36:26.601Z" + }, + "distance": 688, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396824552, + "longitudeE7": -1047566492 + }, + "endLocation": { + "latitudeE7": 396738935, + "longitudeE7": -1047937511 + }, + "duration": { + "startTimestamp": "2013-06-12T16:38:50.290Z", + "endTimestamp": "2013-06-12T16:43:27.032Z" + }, + "distance": 3381, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "simplifiedRawPath": { + "points": [{ + "latE7": 396740562, + "lngE7": -1047801988, + "accuracyMeters": 10, + "timestamp": "2013-06-12T16:40:26.858Z" + }], + "source": "BACKFILLED", + "distanceMeters": 3381.2842110759807 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 396740200, + "longitudeE7": -1047940000, + "placeId": "ChIJ8SQrFtKJbIcREwATIPX5AGQ", + "address": "16701 East Iliff Avenue, Aurora, Colorado 80013, United States", + "name": "Treads Bicycle Outfitters", + "locationConfidence": 20.607065 + }, + "duration": { + "startTimestamp": "2013-06-12T16:43:27.032Z", + "endTimestamp": "2013-06-12T16:58:02.651Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 396738746, + "centerLngE7": -1047935346, + "visitConfidence": 73, + "otherCandidateLocations": [{ + "latitudeE7": 396748710, + "longitudeE7": -1047926510, + "placeId": "ChIJg2l7idGJbIcRtvA7oGQE9Dg", + "address": "16801 E Iliff Ave, Aurora, CO 80013, USA", + "name": "Unique", + "locationConfidence": 11.775674 + }, { + "latitudeE7": 396738270, + "longitudeE7": -1047925310, + "placeId": "ChIJzwXT9dGJbIcRLgFVi9ukg_I", + "address": "16725 E Iliff Ave, Aurora, CO 80013, USA", + "name": "Angelo\u0027s CD\u0027s \u0026 More", + "locationConfidence": 8.893172, + "isCurrentLocation": true + }, { + "latitudeE7": 396732232, + "longitudeE7": -1047936795, + "placeId": "ChIJp3iFENKJbIcRHHnzyi6eFAU", + "address": "16710 E. Iliff Ave, Aurora, CO 80013, USA", + "name": "Discount Tire", + "locationConfidence": 5.895016 + }, { + "latitudeE7": 396749474, + "longitudeE7": -1047928129, + "placeId": "ChIJ67Cv6dGJbIcR06sxWoKxm4w", + "address": "16861 E Iliff Ave, Aurora, CO 80013, USA", + "name": "Iliff Crossings Shopping Center", + "locationConfidence": 3.7939167 + }, { + "latitudeE7": 396748277, + "longitudeE7": -1047934679, + "placeId": "ChIJORcs9NGJbIcRLItk9PCIK24", + "address": "16771 E Iliff Ave, Aurora, CO 80013, USA", + "name": "Washtime Laundry", + "locationConfidence": 2.40925 + }, { + "latitudeE7": 396738889, + "longitudeE7": -1047938889, + "placeId": "ChIJjzQe99GJbIcRAF0aTDqLnUs", + "locationConfidence": 2.3938067, + "isCurrentLocation": true + }, { + "latitudeE7": 396747949, + "longitudeE7": -1047931820, + "placeId": "ChIJq7dhH9KJbIcR9hWrbECCZKQ", + "address": "16791 E Iliff Ave, Aurora, CO 80013, USA", + "name": "Advance Auto Parts", + "locationConfidence": 2.3361843 + }, { + "latitudeE7": 396732032, + "longitudeE7": -1047924788, + "placeId": "ChIJmf8_-tGJbIcRAG5jCJCOLcw", + "address": "16800 E Iliff Ave, Aurora, CO 80013, USA", + "name": "Pizza Hut", + "locationConfidence": 2.13857 + }, { + "latitudeE7": 396729754, + "longitudeE7": -1047930459, + "placeId": "ChIJ_Yg4HdKJbIcRG2M3g9d2oME", + "address": "16770 E Iliff Ave, Aurora, CO 80013, USA", + "name": "Brakes Plus", + "locationConfidence": 2.092444 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 23, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-12T16:58:02.651Z", + "endTimestamp": "2013-06-12T17:00:38.584Z" + }, + "distance": 2637, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396821255, + "longitudeE7": -1047639825 + }, + "endLocation": { + "latitudeE7": 396736952, + "longitudeE7": -1047698760 + }, + "duration": { + "startTimestamp": "2013-06-12T17:19:23.360Z", + "endTimestamp": "2013-06-12T17:32:22.357Z" + }, + "distance": 588, + "confidence": "HIGH", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396820945, + "lngE7": -1047639770 + }, { + "latE7": 396737518, + "lngE7": -1047694015 + }], + "source": "BACKFILLED", + "distanceMeters": 1193.6777622896673, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-12T17:39:42.405Z", + "endTimestamp": "2013-06-12T17:41:23.583Z" + }, + "distance": 1983, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396968282, + "longitudeE7": -1047718488 + }, + "endLocation": { + "latitudeE7": 396001239, + "longitudeE7": -1047098999 + }, + "duration": { + "startTimestamp": "2013-06-12T17:50:17.643Z", + "endTimestamp": "2013-06-12T18:11:21.105Z" + }, + "distance": 955, + "confidence": "HIGH", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396968345, + "lngE7": -1047718429 + }, { + "latE7": 396001663, + "lngE7": -1047099838 + }], + "source": "BACKFILLED", + "distanceMeters": 15130.294497369054, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396094315, + "longitudeE7": -1047057112 + }, + "endLocation": { + "latitudeE7": 396748385, + "longitudeE7": -1047943404 + }, + "duration": { + "startTimestamp": "2013-06-12T19:43:34.167Z", + "endTimestamp": "2013-06-12T20:02:56.823Z" + }, + "distance": 933, + "confidence": "HIGH", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396092147, + "lngE7": -1047057800 + }, { + "latE7": 396748428, + "lngE7": -1047942581 + }], + "source": "BACKFILLED", + "distanceMeters": 17462.106039299448, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 396805523, + "longitudeE7": -1047687810 + }, + "endLocation": { + "latitudeE7": 392683062, + "longitudeE7": -1037090252 + }, + "duration": { + "startTimestamp": "2013-06-12T20:42:24.544Z", + "endTimestamp": "2013-06-13T00:36:21.936Z" + }, + "distance": 239584, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 396805419, + "lngE7": -1047687988 + }, { + "latE7": 396732482, + "lngE7": -1047871627 + }, { + "latE7": 387765617, + "lngE7": -1048148727 + }, { + "latE7": 388302192, + "lngE7": -1048217926 + }, { + "latE7": 392682304, + "lngE7": -1037090606 + }], + "source": "BACKFILLED", + "distanceMeters": 124451.36524163227, + "travelMode": "DRIVE", + "confidence": 0.997878036323693 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 396733589, + "lngE7": -1047871094, + "accuracyMeters": 10, + "timestamp": "2013-06-12T20:52:18.087Z" + }, { + "latE7": 387764091, + "lngE7": -1048145981, + "accuracyMeters": 5, + "timestamp": "2013-06-12T23:00:58.017Z" + }, { + "latE7": 388302193, + "lngE7": -1048217468, + "accuracyMeters": 10, + "timestamp": "2013-06-12T23:12:17.573Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 392683062, + "longitudeE7": -1037090252 + }, + "endLocation": { + "latitudeE7": 405017562, + "longitudeE7": -1032632518 + }, + "duration": { + "startTimestamp": "2013-06-13T00:52:55.220Z", + "endTimestamp": "2013-06-13T02:38:00.829Z" + }, + "distance": 157237, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 392682304, + "lngE7": -1037090606 + }, { + "latE7": 405022468, + "lngE7": -1032616958 + }], + "source": "BACKFILLED", + "distanceMeters": 159917.77469273566, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-13T02:45:41.661Z", + "endTimestamp": "2013-06-13T03:29:05.726Z" + }, + "distance": 67542, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 405933341, + "lngE7": -1032275695 + }, { + "latE7": 411167755, + "lngE7": -1029482498 + }], + "source": "BACKFILLED", + "distanceMeters": 68366.4645554328, + "travelMode": "DRIVE", + "confidence": 0.9975997783993297 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 411167229, + "longitudeE7": -1029482493 + }, + "endLocation": { + "latitudeE7": 437052380, + "longitudeE7": -1036049237 + }, + "duration": { + "startTimestamp": "2013-06-13T16:07:12.553Z", + "endTimestamp": "2013-06-13T20:00:58.727Z" + }, + "distance": 329476, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 411167755, + "lngE7": -1029482498 + }, { + "latE7": 437552719, + "lngE7": -1036119003 + }, { + "latE7": 437049903, + "lngE7": -1036039581 + }], + "source": "BACKFILLED", + "distanceMeters": 339284.18763722666, + "travelMode": "DRIVE", + "confidence": 0.9952125361283094 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 437553368, + "lngE7": -1036118851, + "accuracyMeters": 10, + "timestamp": "2013-06-13T19:50:57.719Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 437052380, + "longitudeE7": -1036049237 + }, + "endLocation": { + "latitudeE7": 437052380, + "longitudeE7": -1036049237 + }, + "duration": { + "startTimestamp": "2013-06-13T20:00:58.727Z", + "endTimestamp": "2013-06-13T20:13:13.288Z" + }, + "distance": 110, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-13T20:22:05.907Z", + "endTimestamp": "2013-06-13T20:48:26.455Z" + }, + "distance": 320, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 438288879, + "lngE7": -1036316375 + }, { + "latE7": 438287925, + "lngE7": -1036317367 + }], + "source": "BACKFILLED", + "distanceMeters": 13.27050498736698, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-13T20:48:26.455Z", + "endTimestamp": "2013-06-13T21:30:26.017Z" + }, + "distance": 27702, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 438286933, + "lngE7": -1036318435 + }, { + "latE7": 439059104, + "lngE7": -1035910491 + }, { + "latE7": 438752174, + "lngE7": -1034523468 + }], + "source": "BACKFILLED", + "distanceMeters": 25422.686354196572, + "travelMode": "DRIVE", + "confidence": 0.7340712199479164 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 439059181, + "lngE7": -1035910568, + "accuracyMeters": 10, + "timestamp": "2013-06-13T21:16:25.796Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 438752360, + "longitudeE7": -1034523821 + }, + "endLocation": { + "latitudeE7": 439339584, + "longitudeE7": -1035579135 + }, + "duration": { + "startTimestamp": "2013-06-13T22:17:12.333Z", + "endTimestamp": "2013-06-13T23:25:27.729Z" + }, + "distance": 2707, + "confidence": "HIGH", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 438752174, + "lngE7": -1034523468 + }, { + "latE7": 439340209, + "lngE7": -1035585098 + }], + "source": "BACKFILLED", + "distanceMeters": 21664.370896395794, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-13T23:25:27.729Z", + "endTimestamp": "2013-06-14T06:00:42.750Z" + }, + "distance": 7883, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 443447384, + "longitudeE7": -1037765355 + }, + "endLocation": { + "latitudeE7": 439377977, + "longitudeE7": -1035751897 + }, + "duration": { + "startTimestamp": "2013-06-14T15:37:20.500Z", + "endTimestamp": "2013-06-14T16:10:35.835Z" + }, + "distance": 961, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 439377977, + "longitudeE7": -1035751897 + }, + "endLocation": { + "latitudeE7": 439333241, + "longitudeE7": -1035756148, + "placeId": "ChIJ86M-VuS0YocRQHLEOjjtkMU", + "address": "117 Main St, Hill City, SD 57745-5106, United States", + "name": "Museum @ Black Hills Institute", + "locationConfidence": 21.060524 + }, + "duration": { + "startTimestamp": "2013-06-14T16:10:35.835Z", + "endTimestamp": "2013-06-14T16:18:50.973Z" + }, + "distance": 226, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 439333241, + "longitudeE7": -1035756148, + "placeId": "ChIJ86M-VuS0YocRQHLEOjjtkMU", + "address": "117 Main St, Hill City, SD 57745-5106, United States", + "name": "Museum @ Black Hills Institute", + "locationConfidence": 21.060524 + }, + "duration": { + "startTimestamp": "2013-06-14T16:18:50.973Z", + "endTimestamp": "2013-06-14T17:24:17.221Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 439336462, + "centerLngE7": -1035753598, + "visitConfidence": 79, + "otherCandidateLocations": [{ + "latitudeE7": 439328260, + "longitudeE7": -1035755997, + "placeId": "ChIJUYEQVOS0YocRqTePzpDjwTs", + "address": "133 Main St, Hill City, SD 57745, USA", + "name": "Alpine Inn", + "locationConfidence": 12.827538 + }, { + "latitudeE7": 439337920, + "longitudeE7": -1035760864, + "placeId": "ChIJTbQqVeS0YocRwpJKESL4BRk", + "address": "109 Main St, Hill City, SD 57745, USA", + "name": "Super 8 by Wyndham Hill City/Mt Rushmore/ Area", + "locationConfidence": 9.08229 + }, { + "latitudeE7": 439332999, + "longitudeE7": -1035754344, + "placeId": "ChIJ86M-VuS0YocRGtiRGHxTAzI", + "address": "117 Main St, Hill City, SD 57745, USA", + "name": "Everything Prehistoric", + "locationConfidence": 8.190176 + }, { + "latitudeE7": 439337685, + "longitudeE7": -1035754700, + "placeId": "ChIJ4fA1qeW0YocRoN38iG9lCFA", + "address": "201 Main St, Hill City, SD 57745, USA", + "name": "Exxon", + "locationConfidence": 7.0072603, + "isCurrentLocation": true + }, { + "latitudeE7": 439326225, + "longitudeE7": -1035734292, + "placeId": "ChIJU2IJoua0YocRw320MYkkEwY", + "address": "222 Railroad Ave, Hill City, SD 57745, USA", + "name": "Black Hills Central Railroad", + "locationConfidence": 4.507811 + }, { + "latitudeE7": 439331231, + "longitudeE7": -1035755985, + "placeId": "ChIJaeMO-OS0YocRHw8NT8QiU_0", + "address": "125 Main St, Hill City, SD 57745, USA", + "name": "Harney Peak Inn", + "locationConfidence": 4.247291 + }, { + "latitudeE7": 439334601, + "longitudeE7": -1035749789, + "placeId": "ChIJb5LcU-S0YocRq68fc6DKLfs", + "address": "216 Main St, Hill City, SD 57745, USA", + "name": "Twisted Pine", + "locationConfidence": 3.0068827 + }, { + "latitudeE7": 439330311, + "longitudeE7": -1035750784, + "placeId": "ChIJHSOYWuS0YocRykz49sHn75A", + "address": "148 Main St, Hill City, SD 57745, USA", + "name": "Rico\u0027s", + "locationConfidence": 2.9371953 + }, { + "latitudeE7": 439319120, + "longitudeE7": -1035751895, + "placeId": "ChIJdaPGZOS0YocREp-ZSfILLHo", + "address": "240 Main St, Hill City, SD 57745, USA", + "name": "Mangy Moose Saloon", + "locationConfidence": 2.7324083 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 24, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-15T15:31:43.621Z", + "endTimestamp": "2013-06-15T20:46:04.591Z" + }, + "distance": 547188, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 439337043, + "lngE7": -1035753707 + }, { + "latE7": 436118087, + "lngE7": -969509658 + }], + "source": "BACKFILLED", + "distanceMeters": 573599.7974475744, + "travelMode": "DRIVE", + "confidence": 0.999974112475054 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 436121209, + "longitudeE7": -969512463, + "placeId": "ChIJi0ZxGA8tiYcR8h-EfeC1vS8", + "address": "1001 S Western Ave, Hartford, South Dakota 57033-2012, United States", + "name": "Coffee Cup Fuel Stop", + "locationConfidence": 63.00063, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-15T20:46:04.591Z", + "endTimestamp": "2013-06-15T20:57:28.452Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 436119100, + "centerLngE7": -969510000, + "visitConfidence": 77, + "otherCandidateLocations": [{ + "latitudeE7": 436119554, + "longitudeE7": -969508028, + "placeId": "ChIJSWusGA8tiYcRyc3tlQk3-h8", + "address": "1001 S Western Ave, Hartford, SD 57033, USA", + "name": "BP", + "locationConfidence": 25.887146, + "isCurrentLocation": true + }, { + "latitudeE7": 436119554, + "longitudeE7": -969508028, + "placeId": "ChIJSWusGA8tiYcRyc3tlQk3-h8", + "address": "1001 S Western Ave, Hartford, SD 57033, USA", + "name": "BP", + "locationConfidence": 2.270521 + }, { + "latitudeE7": 436112100, + "longitudeE7": -969493870, + "placeId": "ChIJcZeK_qEtiYcRSeajahHNTZE", + "address": "1021 S Diamond Cir, Hartford, SD 57033, USA", + "name": "Pinsetter\u0027s Pub \u0026 Pasta Parlor", + "locationConfidence": 2.2421687 + }, { + "latitudeE7": 436119750, + "longitudeE7": -969509999, + "placeId": "ChIJD680KgktiYcRYzlARbFpliY", + "name": "AAA ATM, Inc", + "locationConfidence": 1.5601811 + }, { + "latitudeE7": 436104139, + "longitudeE7": -969490548, + "placeId": "ChIJwagtR-5a5okRqQMh3skdD1E", + "address": "1031 S Diamond Cir, Hartford, SD 57033, USA", + "name": "AmericInn by Wyndham, Hartford SD", + "locationConfidence": 1.3081353 + }, { + "latitudeE7": 436112100, + "longitudeE7": -969493870, + "placeId": "ChIJcZeK_qEtiYcRLNiak_8ctnk", + "locationConfidence": 1.2196189 + }, { + "latitudeE7": 436129650, + "longitudeE7": -969509720, + "placeId": "ChIJz3JYKAktiYcR81cwbJk4Xko", + "address": "901 S Western Ave, Hartford, SD 57033, USA", + "name": "Tammen Auto \u0026 Tire, Inc.", + "locationConfidence": 0.87349993 + }, { + "latitudeE7": 436131720, + "longitudeE7": -969496550, + "placeId": "ChIJP3lXJgktiYcRHDOa_42Ob9E", + "address": "800 S Western Ave, Hartford, SD 57033, USA", + "name": "Central States Manufacturing Inc", + "locationConfidence": 0.73062086 + }, { + "latitudeE7": 436124030, + "longitudeE7": -969489380, + "placeId": "ChIJOSsqvw4tiYcRJ-6Pe1equxU", + "address": "800 S Western Ave Ste D, Hartford, SD 57033, USA", + "name": "Grocott Ink \u0026 Thread", + "locationConfidence": 0.40454695 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 58, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "TRANSITIONAL" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-15T20:57:28.452Z", + "endTimestamp": "2013-06-15T23:23:48.201Z" + }, + "distance": 224517, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 436119384, + "lngE7": -969510879 + }, { + "latE7": 437811355, + "lngE7": -962125396 + }, { + "latE7": 448538017, + "lngE7": -954836120 + }], + "source": "BACKFILLED", + "distanceMeters": 217910.47668520277, + "travelMode": "DRIVE", + "confidence": 0.9945752889897529 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 437811356, + "lngE7": -962125015, + "accuracyMeters": 5, + "timestamp": "2013-06-15T21:47:30.419Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-15T23:31:53.672Z", + "endTimestamp": "2013-06-15T23:34:48.518Z" + }, + "distance": 15535, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-15T23:34:48.518Z", + "endTimestamp": "2013-06-16T03:11:42.318Z" + }, + "distance": 204724, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 449603614, + "lngE7": -953559036 + }, { + "latE7": 451340217, + "lngE7": -949141540 + }, { + "latE7": 450488357, + "lngE7": -944080963 + }, { + "latE7": 449701232, + "lngE7": -944225540 + }, { + "latE7": 451040458, + "lngE7": -945496673 + }, { + "latE7": 452777442, + "lngE7": -944383621 + }, { + "latE7": 453083457, + "lngE7": -943936538 + }, { + "latE7": 455159759, + "lngE7": -944954681 + }], + "source": "BACKFILLED", + "distanceMeters": 107231.67390432091, + "travelMode": "DRIVE", + "confidence": 0.9998479507529986 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 451340294, + "lngE7": -949141541, + "accuracyMeters": 10, + "timestamp": "2013-06-16T00:00:50.853Z" + }, { + "latE7": 450488167, + "lngE7": -944081421, + "accuracyMeters": 5, + "timestamp": "2013-06-16T00:42:44.044Z" + }, { + "latE7": 449700813, + "lngE7": -944226074, + "accuracyMeters": 10, + "timestamp": "2013-06-16T01:03:27.076Z" + }, { + "latE7": 449827003, + "lngE7": -943992767, + "accuracyMeters": 10, + "timestamp": "2013-06-16T01:07:26.978Z" + }, { + "latE7": 451041031, + "lngE7": -945496292, + "accuracyMeters": 10, + "timestamp": "2013-06-16T01:51:37.124Z" + }, { + "latE7": 452776756, + "lngE7": -944383850, + "accuracyMeters": 20, + "timestamp": "2013-06-16T02:31:47.942Z" + }, { + "latE7": 453083458, + "lngE7": -943935928, + "accuracyMeters": 5, + "timestamp": "2013-06-16T02:45:41.806Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 454578546, + "longitudeE7": -945242956 + }, + "endLocation": { + "latitudeE7": 454578546, + "longitudeE7": -945242956 + }, + "duration": { + "startTimestamp": "2013-06-16T03:26:20.273Z", + "endTimestamp": "2013-06-16T03:36:50.793Z" + }, + "distance": 705, + "confidence": "HIGH", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 453723239, + "longitudeE7": -945394151 + }, + "endLocation": { + "latitudeE7": 450965441, + "longitudeE7": -944105818 + }, + "duration": { + "startTimestamp": "2013-06-16T13:51:14.732Z", + "endTimestamp": "2013-06-16T14:53:12.037Z" + }, + "distance": 58563, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 453717880, + "lngE7": -945376434 + }, { + "latE7": 454540214, + "lngE7": -945200271 + }, { + "latE7": 451875228, + "lngE7": -945428543 + }, { + "latE7": 451354331, + "lngE7": -945281906 + }, { + "latE7": 450965576, + "lngE7": -944105834 + }], + "source": "BACKFILLED", + "distanceMeters": 39690.28273447529, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 454541550, + "lngE7": -945200348, + "accuracyMeters": 10, + "timestamp": "2013-06-16T14:03:16.988Z" + }, { + "latE7": 451875229, + "lngE7": -945428848, + "accuracyMeters": 10, + "timestamp": "2013-06-16T14:28:00.400Z" + }, { + "latE7": 451354332, + "lngE7": -945282364, + "accuracyMeters": 20, + "timestamp": "2013-06-16T14:36:19.516Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-16T14:54:45.548Z", + "endTimestamp": "2013-06-16T15:12:35.099Z" + }, + "distance": 1470, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 450097649, + "longitudeE7": -943592633 + }, + "endLocation": { + "latitudeE7": 457278903, + "longitudeE7": -949516456 + }, + "duration": { + "startTimestamp": "2013-06-16T15:12:35.099Z", + "endTimestamp": "2013-06-16T16:23:54.357Z" + }, + "distance": 91485, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 450097694, + "lngE7": -943580780 + }, { + "latE7": 451248474, + "lngE7": -945207824 + }, { + "latE7": 451382484, + "lngE7": -945519332 + }, { + "latE7": 451525459, + "lngE7": -946046295 + }, { + "latE7": 453779144, + "lngE7": -947286529 + }, { + "latE7": 457278747, + "lngE7": -949517974 + }], + "source": "BACKFILLED", + "distanceMeters": 124745.9025996738, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 451248436, + "lngE7": -945204239, + "accuracyMeters": 60, + "timestamp": "2013-06-16T15:21:18.166Z" + }, { + "latE7": 451382790, + "lngE7": -945519333, + "accuracyMeters": 5, + "timestamp": "2013-06-16T15:25:04.079Z" + }, { + "latE7": 451525803, + "lngE7": -946046295, + "accuracyMeters": 10, + "timestamp": "2013-06-16T15:29:04.237Z" + }, { + "latE7": 453779259, + "lngE7": -947286224, + "accuracyMeters": 10, + "timestamp": "2013-06-16T15:49:04.443Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-16T16:31:53.538Z", + "endTimestamp": "2013-06-16T16:36:53.562Z" + }, + "distance": 543, + "confidence": "LOW", + "activities": [{ + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 457278747, + "lngE7": -949517288 + }, { + "latE7": 457230758, + "lngE7": -949507446 + }], + "source": "BACKFILLED", + "distanceMeters": 598.7996164628187, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 457231375, + "longitudeE7": -949504325, + "placeId": "ChIJh-JkXwCUtVIRfalIOab07hY", + "address": "1210 Timberlane Drive, Sauk Centre, Minnesota 56378, United States", + "name": "McDonald\u0027s", + "locationConfidence": 35.974033 + }, + "duration": { + "startTimestamp": "2013-06-16T16:36:53.562Z", + "endTimestamp": "2013-06-16T16:48:53.763Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 457230700, + "centerLngE7": -949507800, + "visitConfidence": 64, + "otherCandidateLocations": [{ + "latitudeE7": 457373183, + "longitudeE7": -949573772, + "placeId": "ChIJJRHZg_-TtVIRj1LHexWj1h8", + "name": "Sinclair Lewis House Museum", + "locationConfidence": 10.769814 + }, { + "latitudeE7": 457241056, + "longitudeE7": -949509327, + "placeId": "ChIJiQaRYAeUtVIR-X2oB4vMB9I", + "address": "1185 Main St S, Sauk Centre, MN 56378, USA", + "name": "Holiday Stationstores", + "locationConfidence": 10.565186 + }, { + "latitudeE7": 457225458, + "longitudeE7": -949495058, + "placeId": "ChIJzy3OXgCUtVIR0aqW62pekv0", + "address": "1225 Timberlane Dr, Sauk Centre, MN 56378, USA", + "name": "Elmerz Restaurant, Bar \u0026 Event Centre", + "locationConfidence": 7.570696 + }, { + "latitudeE7": 457238963, + "longitudeE7": -949499765, + "placeId": "ChIJs1m5_wCUtVIRGvZQi4nQ9nA", + "address": "322 12th St S # 2, Sauk Centre, MN 56378, USA", + "name": "J T\u0027s Pub \u0026 Grill LLC", + "locationConfidence": 4.4233866 + }, { + "latitudeE7": 457216490, + "longitudeE7": -949502670, + "placeId": "ChIJB6-HXgCUtVIRbDHchIACe3E", + "address": "1230 Timberlane Dr, Sauk Centre, MN 56378, USA", + "name": "AmericInn by Wyndham, Sauk Centre", + "locationConfidence": 3.5129905 + }, { + "latitudeE7": 457366560, + "longitudeE7": -949535710, + "placeId": "ChIJa1XGg_-TtVIR5b10TSFOwoQ", + "address": "524 4th St S, Sauk Centre, MN 56378, USA", + "name": "Sauk Centre Chamber of Commerce", + "locationConfidence": 2.5705252 + }, { + "latitudeE7": 457239972, + "longitudeE7": -949513981, + "placeId": "ChIJiQaRYAeUtVIRpZCVcCDkAfk", + "address": "1185 Main St S, Sauk Centre, MN 56378, USA", + "name": "Kranz Super Stop Inc", + "locationConfidence": 2.2963648 + }, { + "latitudeE7": 457366560, + "longitudeE7": -949535710, + "placeId": "ChIJa1XGg_-TtVIR5b10TSFOwoQ", + "address": "524 4th St S, Sauk Centre, MN 56378, USA", + "name": "Sauk Centre Chamber of Commerce", + "locationConfidence": 1.9359006 + }, { + "latitudeE7": 457207000, + "longitudeE7": -949470000, + "placeId": "ChIJRdavnwGUtVIReYpnXPmA2zU", + "address": "205 12th St S, Sauk Centre, MN 56378, USA", + "name": "Walmart Supercenter", + "locationConfidence": 1.7997825 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 36, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 457231375, + "longitudeE7": -949504325, + "placeId": "ChIJh-JkXwCUtVIRfalIOab07hY", + "address": "1210 Timberlane Drive, Sauk Centre, Minnesota 56378, United States", + "name": "McDonald\u0027s", + "locationConfidence": 35.974033 + }, + "endLocation": { + "latitudeE7": 468505320, + "longitudeE7": -967989430, + "placeId": "ChIJd5M_jQXMyFIRZBb6xpyIUjc", + "address": "1833 University Dr S, Fargo, ND 58103-4941, United States", + "name": "Loaf \u0027N Jug", + "locationConfidence": 21.749565 + }, + "duration": { + "startTimestamp": "2013-06-16T16:48:53.763Z", + "endTimestamp": "2013-06-16T18:39:40.033Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 457230758, + "lngE7": -949507446 + }, { + "latE7": 468507194, + "lngE7": -967988662 + }], + "source": "BACKFILLED", + "distanceMeters": 206449.9559143526, + "travelMode": "DRIVE", + "confidence": 0.37438880722078705 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 468505320, + "longitudeE7": -967989430, + "placeId": "ChIJd5M_jQXMyFIRZBb6xpyIUjc", + "address": "1833 University Dr S, Fargo, ND 58103-4941, United States", + "name": "Loaf \u0027N Jug", + "locationConfidence": 21.749565 + }, + "duration": { + "startTimestamp": "2013-06-16T18:39:40.033Z", + "endTimestamp": "2013-06-16T18:53:47.491Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 468509220, + "centerLngE7": -967985480, + "visitConfidence": 55, + "otherCandidateLocations": [{ + "latitudeE7": 468505527, + "longitudeE7": -967976492, + "placeId": "ChIJrft70AXMyFIRxD_nJR-pw0c", + "address": "1825 11th St S, Fargo, ND 58103, USA", + "name": "Nativity Church of Fargo", + "locationConfidence": 11.476917 + }, { + "latitudeE7": 468505168, + "longitudeE7": -967976682, + "placeId": "ChIJH5ttyQXMyFIRa7U1DZEWa6c", + "address": "1825 11th St S, Fargo, ND 58103, USA", + "name": "Nativity Elementary School", + "locationConfidence": 10.767706 + }, { + "latitudeE7": 468527798, + "longitudeE7": -967976411, + "placeId": "ChIJ0znXQgbMyFIRGrLS6k1TfcI", + "address": "1720 S University Dr, Fargo, ND 58103, USA", + "name": "Sanford South University", + "locationConfidence": 6.4506216 + }, { + "latitudeE7": 469050614, + "longitudeE7": -967973738, + "placeId": "ChIJzxeekwXMyFIRD2bMnD0_WF4", + "address": "1901 N University Dr, Fargo, ND 58102, USA", + "name": "Casey\u0027s General Store", + "locationConfidence": 5.3429937 + }, { + "latitudeE7": 468513406, + "longitudeE7": -967991707, + "placeId": "ChIJifS9_AXMyFIRruyxQ2NmC68", + "address": "1815 S University Dr, Fargo, ND 58103, USA", + "name": "U.S. Bank ATM - Fargo South", + "locationConfidence": 3.2146902 + }, { + "latitudeE7": 468505527, + "longitudeE7": -967976492, + "placeId": "ChIJH5ttyQXMyFIR2YCV1khYvYg", + "address": "1825 11th St S, Fargo, ND 58103, USA", + "name": "Nativity School Gym", + "locationConfidence": 3.0208642 + }, { + "latitudeE7": 468509940, + "longitudeE7": -967991178, + "placeId": "ChIJheBS7gXMyFIRRqz8RHPETPQ", + "address": "1825 S University Dr, Fargo, ND 58103, USA", + "name": "Taco Shop", + "locationConfidence": 2.0417385 + }, { + "latitudeE7": 468512509, + "longitudeE7": -967992420, + "placeId": "ChIJxUqY6wXMyFIR0rKUUb19HVE", + "address": "1815 S University Dr, Fargo, ND 58103, USA", + "name": "U.S. Bank Branch", + "locationConfidence": 1.7143031 + }, { + "latitudeE7": 468526589, + "longitudeE7": -967974570, + "placeId": "ChIJnXVbYQbMyFIRfplspB9MuG0", + "address": "1720 S University Dr, Fargo, ND 58103, USA", + "name": "Sanford South University Urgent Care", + "locationConfidence": 1.5515366 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 24, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "TRANSITIONAL" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 468505320, + "longitudeE7": -967989430, + "placeId": "ChIJd5M_jQXMyFIRZBb6xpyIUjc", + "address": "1833 University Dr S, Fargo, ND 58103-4941, United States", + "name": "Loaf \u0027N Jug", + "locationConfidence": 21.749565 + }, + "endLocation": { + "latitudeE7": 493431738, + "longitudeE7": -973675776, + "placeId": "ChIJcyizD_SOwVIRSAHvdktyLxc", + "address": "Anderson Street, Morris, Manitoba R0G 1K0, Canada", + "name": "Morris Husky", + "locationConfidence": 44.114937 + }, + "duration": { + "startTimestamp": "2013-06-16T18:53:47.491Z", + "endTimestamp": "2013-06-16T21:55:35.563Z" + }, + "distance": 282965, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 468507194, + "lngE7": -967988662 + }, { + "latE7": 492666206, + "lngE7": -973425064 + }, { + "latE7": 493435707, + "lngE7": -973674011 + }], + "source": "BACKFILLED", + "distanceMeters": 291299.161080587, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 492666283, + "lngE7": -973424606, + "accuracyMeters": 89, + "timestamp": "2013-06-16T21:42:36.013Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 493431738, + "longitudeE7": -973675776, + "placeId": "ChIJcyizD_SOwVIRSAHvdktyLxc", + "address": "Anderson Street, Morris, Manitoba R0G 1K0, Canada", + "name": "Morris Husky", + "locationConfidence": 44.114937 + }, + "duration": { + "startTimestamp": "2013-06-16T21:55:35.563Z", + "endTimestamp": "2013-06-16T22:11:29.850Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 493432131, + "centerLngE7": -973671592, + "visitConfidence": 70, + "otherCandidateLocations": [{ + "latitudeE7": 493428794, + "longitudeE7": -973654700, + "placeId": "ChIJazMRyfmOwVIRDrjNmoNsCxo", + "address": "MB-75, Morris, MB R0G 0B0, Canada", + "name": "Co-op Cardlock", + "locationConfidence": 20.32186 + }, { + "latitudeE7": 493432210, + "longitudeE7": -973676091, + "placeId": "ChIJE2GqSPSOwVIRb7QrtyaHNmE", + "address": "2 Stampede Dr, Morris, MB R0G 1K0, Canada", + "name": "HUSKY", + "locationConfidence": 18.036856 + }, { + "latitudeE7": 493440530, + "longitudeE7": -973670030, + "placeId": "ChIJB9Z6iF-OwVIR9wGJUSdJUMc", + "address": "733 Main St, Morris, MB R0G 1K0, Canada", + "name": "Morris Build-All Centre", + "locationConfidence": 7.9248652 + }, { + "latitudeE7": 493445559, + "longitudeE7": -973643382, + "placeId": "ChIJB9Z6iF-OwVIRJDzyuJIJAV0", + "address": "654 Main St S, Morris, MB R0G 1K0, Canada", + "name": "Morris Bigway Foods", + "locationConfidence": 6.7072554 + }, { + "latitudeE7": 493418234, + "longitudeE7": -973666401, + "placeId": "ChIJL1IjnvmOwVIRSF16ks0k_YQ", + "locationConfidence": 1.5648307 + }, { + "latitudeE7": 493460794, + "longitudeE7": -973657872, + "placeId": "ChIJE2GqSPSOwVIRJ4wvdNPs07o", + "address": "Lord Selkirk Hwy, Morris, MB R0G 1K0, Canada", + "name": "Bill\u0027s Pizza", + "locationConfidence": 0.70615375 + }, { + "latitudeE7": 493438378, + "longitudeE7": -973634015, + "placeId": "ChIJdSTJEPiOwVIRK6TBnM_uMgI", + "locationConfidence": 0.20774738 + }, { + "latitudeE7": 493438378, + "longitudeE7": -973634015, + "placeId": "ChIJdSTJEPiOwVIRDtR7GImcY48", + "locationConfidence": 0.20774738 + }, { + "latitudeE7": 493438378, + "longitudeE7": -973634015, + "placeId": "ChIJdSTJEPiOwVIRNN9djAmnyS8", + "locationConfidence": 0.20774738 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 43, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-16T22:11:29.850Z", + "endTimestamp": "2013-06-16T22:13:19.499Z" + }, + "distance": 6583, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-16T22:13:19.499Z", + "endTimestamp": "2013-06-16T23:00:31.090Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 493967285, + "lngE7": -973265914 + }, { + "latE7": 498951034, + "lngE7": -971427993 + }], + "source": "BACKFILLED", + "distanceMeters": 60257.80912845777, + "travelMode": "DRIVE", + "confidence": 0.9999554567468341 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498949340, + "longitudeE7": -971423496, + "placeId": "ChIJgdptZFlx6lIR9qLxdl0p43M", + "address": "331 Smith Street, Winnipeg, Manitoba R3B 2G9, Canada", + "name": "The Marlborough Hotel", + "locationConfidence": 13.45591 + }, + "duration": { + "startTimestamp": "2013-06-16T23:00:31.090Z", + "endTimestamp": "2013-06-16T23:39:24.572Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498949392, + "centerLngE7": -971428980, + "visitConfidence": 68, + "otherCandidateLocations": [{ + "latitudeE7": 498950286, + "longitudeE7": -971424978, + "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc", + "address": "331 Smith St, Winnipeg, MB R3B 2H6, Canada", + "name": "Regal Beagle Pub", + "locationConfidence": 8.330058 + }, { + "latitudeE7": 498949407, + "longitudeE7": -971424657, + "placeId": "ChIJYSPpY1lx6lIRBjtSwQfg1cA", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "Centennial Theatre, Main St., Winnipeg", + "locationConfidence": 6.7557755 + }, { + "latitudeE7": 498941390, + "longitudeE7": -971433210, + "placeId": "ChIJJ_3NoVlx6lIRjo88zBaOvFE", + "address": "303 Portage Ave, Winnipeg, MB R3B 2B4, Canada", + "name": "MEC Winnipeg", + "locationConfidence": 4.511523 + }, { + "latitudeE7": 498936546, + "longitudeE7": -971424676, + "placeId": "ChIJa4ZNf1lx6lIR1JKYLNtNMLc", + "address": "288 Portage Ave, Winnipeg, MB R3C 0B8, Canada", + "name": "Radisson Hotel Winnipeg Downtown", + "locationConfidence": 3.9310546 + }, { + "latitudeE7": 498949231, + "longitudeE7": -971423222, + "placeId": "ChIJgdptZFlx6lIREOQggBmeq2A", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "Joanna\u0027s Cafe", + "locationConfidence": 2.6682591 + }, { + "latitudeE7": 454758160, + "longitudeE7": -766618031, + "placeId": "ChIJkRlLdllx6lIROAUg3ribx1w", + "address": "646 O\u0027Brien Rd, Renfrew, ON K7V 0B4, Canada", + "name": "Dollarama", + "locationConfidence": 2.338892 + }, { + "latitudeE7": 498958226, + "longitudeE7": -971436390, + "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM", + "address": "364 Smith St, Winnipeg, MB R3B 2H2, Canada", + "name": "Burton Cummings Theatre", + "locationConfidence": 1.821038 + }, { + "latitudeE7": 498954262, + "longitudeE7": -971440323, + "placeId": "ChIJi2xlFllx6lIRTaX8bbLuwc8", + "address": "345 Donald St, Winnipeg, MB R3B 2J1, Canada", + "name": "Giant Tiger", + "locationConfidence": 1.6268853 + }, { + "latitudeE7": 498944839, + "longitudeE7": -971420133, + "placeId": "ChIJz6MM6Vtx6lIRtBpp1SrO71M", + "address": "271 Portage Ave, Winnipeg, MB R3B 2A8, Canada", + "name": "Manitoba Start", + "locationConfidence": 1.5217178 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 18, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-16T23:39:24.572Z", + "endTimestamp": "2013-06-16T23:40:25.962Z" + }, + "distance": 139, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498943901, + "lngE7": -971431884 + }, { + "latE7": 498933830, + "lngE7": -971448364 + }], + "source": "BACKFILLED", + "distanceMeters": 404.57068232717876, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-16T23:49:02.773Z", + "endTimestamp": "2013-06-17T01:13:41.340Z" + }, + "distance": 254, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498958226, + "longitudeE7": -971436390, + "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM", + "address": "364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada", + "name": "Burton Cummings Theatre", + "locationConfidence": 22.639973 + }, + "duration": { + "startTimestamp": "2013-06-17T01:13:41.340Z", + "endTimestamp": "2013-06-17T14:34:48.832Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 498953550, + "centerLngE7": -971430149, + "visitConfidence": 94, + "otherCandidateLocations": [{ + "latitudeE7": 498950286, + "longitudeE7": -971424978, + "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc", + "address": "331 Smith St, Winnipeg, MB R3B 2H6, Canada", + "name": "Regal Beagle Pub", + "locationConfidence": 12.153744 + }, { + "latitudeE7": 498949340, + "longitudeE7": -971423496, + "placeId": "ChIJgdptZFlx6lIR9qLxdl0p43M", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "The Marlborough Hotel", + "locationConfidence": 9.275249 + }, { + "latitudeE7": 498954599, + "longitudeE7": -971416623, + "placeId": "ChIJZ8a_3Ftx6lIRKryC6rxnUpk", + "address": "330 Garry St, Winnipeg, MB R3B 2G7, Canada", + "name": "The Garrick", + "locationConfidence": 6.029567 + }, { + "latitudeE7": 498941390, + "longitudeE7": -971433210, + "placeId": "ChIJJ_3NoVlx6lIRjo88zBaOvFE", + "address": "303 Portage Ave, Winnipeg, MB R3B 2B4, Canada", + "name": "MEC Winnipeg", + "locationConfidence": 3.5570333 + }, { + "latitudeE7": 498949407, + "longitudeE7": -971424657, + "placeId": "ChIJYSPpY1lx6lIRBjtSwQfg1cA", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "Centennial Theatre, Main St., Winnipeg", + "locationConfidence": 3.5165713 + }, { + "latitudeE7": 498955346, + "longitudeE7": -971435179, + "placeId": "ChIJgbiballx6lIR2sCbew3KhDY", + "address": "283 Ellice Ave, Winnipeg, MB R3B 1X6, Canada", + "name": "Enterprise Rent-A-Car", + "locationConfidence": 2.3482778 + }, { + "latitudeE7": 498936546, + "longitudeE7": -971424676, + "placeId": "ChIJa4ZNf1lx6lIR1JKYLNtNMLc", + "address": "288 Portage Ave, Winnipeg, MB R3C 0B8, Canada", + "name": "Radisson Hotel Winnipeg Downtown", + "locationConfidence": 2.0340545 + }, { + "latitudeE7": 498955542, + "longitudeE7": -971434760, + "placeId": "ChIJ0x4Iallx6lIRaGrESW16kd0", + "name": "Alamo", + "locationConfidence": 1.7633524 + }, { + "latitudeE7": 498953077, + "longitudeE7": -971435073, + "placeId": "ChIJgbiballx6lIR2sCbew3KhDY", + "address": "283 Ellice Ave, Winnipeg, MB R3B 1X6, Canada", + "name": "Enterprise Rent-A-Car", + "locationConfidence": 1.5905956 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 25, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 498958226, + "longitudeE7": -971436390, + "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM", + "address": "364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada", + "name": "Burton Cummings Theatre", + "locationConfidence": 22.639973 + }, + "endLocation": { + "latitudeE7": 498955351, + "longitudeE7": -971390190, + "placeId": "ChIJC1GOCltx6lIR7RzdbtrTGDc", + "locationConfidence": 4.0885134 + }, + "duration": { + "startTimestamp": "2013-06-17T14:34:48.832Z", + "endTimestamp": "2013-06-17T14:39:04.140Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498948783, + "lngE7": -971426696 + }, { + "latE7": 498958511, + "lngE7": -971386795 + }], + "source": "BACKFILLED", + "distanceMeters": 417.77315085219857, + "travelMode": "WALK", + "confidence": 0.9912438694835642 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498955351, + "longitudeE7": -971390190, + "placeId": "ChIJC1GOCltx6lIR7RzdbtrTGDc", + "locationConfidence": 4.0885134 + }, + "duration": { + "startTimestamp": "2013-06-17T14:39:04.140Z", + "endTimestamp": "2013-06-17T14:50:35.941Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498952200, + "centerLngE7": -971387211, + "visitConfidence": 69, + "otherCandidateLocations": [{ + "latitudeE7": 498955525, + "longitudeE7": -971392598, + "placeId": "ChIJT4fXoltx6lIR6BSlgoPnkNM", + "address": "201 Portage Ave, Winnipeg, MB R3B 3K6, Canada", + "name": "GoodLife Fitness Winnipeg Portage \u0026 Main", + "locationConfidence": 4.0872416 + }, { + "latitudeE7": 498955401, + "longitudeE7": -971391370, + "placeId": "ChIJT4fXoltx6lIRF9bPHQ4x0Mw", + "address": "201 Portage Ave #100, Winnipeg, MB R3B 3K6, Canada", + "name": "Starbucks", + "locationConfidence": 3.7639074 + }, { + "latitudeE7": 498954895, + "longitudeE7": -971388339, + "placeId": "ChIJefBWC1tx6lIRRF8eax3anlc", + "locationConfidence": 3.049136 + }, { + "latitudeE7": 498958037, + "longitudeE7": -971369775, + "placeId": "ChIJY29DP1tx6lIRCjqton0ZIQw", + "address": "2 Lombard Place, Winnipeg, MB R3B 0Y3, Canada", + "name": "Fairmont Winnipeg", + "locationConfidence": 2.8222806 + }, { + "latitudeE7": 498955220, + "longitudeE7": -971391990, + "placeId": "ChIJs8aPn1tx6lIRBTloKvIzB5k", + "address": "201 Portage Ave #860, Winnipeg, MB R3B 3K6, Canada", + "name": "US Consulate Winnipeg", + "locationConfidence": 2.808777 + }, { + "latitudeE7": 498956856, + "longitudeE7": -971392718, + "placeId": "ChIJT4fXoltx6lIRkFn3w1meVh4", + "address": "201 Portage Ave, Winnipeg, MB R3B 3K6, Canada", + "name": "Culture Days", + "locationConfidence": 1.9811295 + }, { + "latitudeE7": 498951398, + "longitudeE7": -971385690, + "placeId": "ChIJW8NhDFtx6lIRp_5Z_XvqX20", + "address": "200 Portage Ave, Winnipeg, MB R3C 3X2, Canada", + "name": "Scotiabank", + "locationConfidence": 1.8867399 + }, { + "latitudeE7": 498956421, + "longitudeE7": -971392796, + "placeId": "ChIJT4fXoltx6lIRmdxCYzQFtVQ", + "address": "201 Portage Ave, Winnipeg, MB R3C 0B9, Canada", + "name": "TD Wealth", + "locationConfidence": 1.4974447 + }, { + "latitudeE7": 498951650, + "longitudeE7": -971376463, + "placeId": "ChIJAbyPEltx6lIRs0AXP-gteHs", + "address": "201 Portage Ave, Winnipeg, MB R3B 3K6, Canada", + "name": "BMO Bank of Montreal", + "locationConfidence": 1.3150122 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 10, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 498955351, + "longitudeE7": -971390190, + "placeId": "ChIJC1GOCltx6lIR7RzdbtrTGDc", + "locationConfidence": 4.0885134 + }, + "endLocation": { + "latitudeE7": 498950286, + "longitudeE7": -971424978, + "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc", + "address": "331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada", + "name": "Regal Beagle Pub", + "locationConfidence": 15.793657, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-17T14:50:53.361Z", + "endTimestamp": "2013-06-17T14:53:32.271Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498950424, + "lngE7": -971383132 + }, { + "latE7": 498951683, + "lngE7": -971428375 + }], + "source": "BACKFILLED", + "distanceMeters": 480.4587778420977, + "travelMode": "WALK", + "confidence": 0.8043652233399302 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498950286, + "longitudeE7": -971424978, + "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc", + "address": "331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada", + "name": "Regal Beagle Pub", + "locationConfidence": 15.793657, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-17T14:53:32.271Z", + "endTimestamp": "2013-06-17T15:28:13.664Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498953068, + "centerLngE7": -971427880, + "visitConfidence": 72, + "otherCandidateLocations": [{ + "latitudeE7": 498949340, + "longitudeE7": -971423496, + "placeId": "ChIJgdptZFlx6lIR9qLxdl0p43M", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "The Marlborough Hotel", + "locationConfidence": 7.606468 + }, { + "latitudeE7": 498941390, + "longitudeE7": -971433210, + "placeId": "ChIJJ_3NoVlx6lIRjo88zBaOvFE", + "address": "303 Portage Ave, Winnipeg, MB R3B 2B4, Canada", + "name": "MEC Winnipeg", + "locationConfidence": 5.773976 + }, { + "latitudeE7": 498954262, + "longitudeE7": -971440323, + "placeId": "ChIJi2xlFllx6lIRTaX8bbLuwc8", + "address": "345 Donald St, Winnipeg, MB R3B 2J1, Canada", + "name": "Giant Tiger", + "locationConfidence": 4.274851 + }, { + "latitudeE7": 498949407, + "longitudeE7": -971424657, + "placeId": "ChIJYSPpY1lx6lIRBjtSwQfg1cA", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "Centennial Theatre, Main St., Winnipeg", + "locationConfidence": 3.8194985 + }, { + "latitudeE7": 498955346, + "longitudeE7": -971435179, + "placeId": "ChIJgbiballx6lIR2sCbew3KhDY", + "address": "283 Ellice Ave, Winnipeg, MB R3B 1X6, Canada", + "name": "Enterprise Rent-A-Car", + "locationConfidence": 3.646239 + }, { + "latitudeE7": 498944839, + "longitudeE7": -971420133, + "placeId": "ChIJz6MM6Vtx6lIRtBpp1SrO71M", + "address": "271 Portage Ave, Winnipeg, MB R3B 2A8, Canada", + "name": "Manitoba Start", + "locationConfidence": 3.0804288 + }, { + "latitudeE7": 454758160, + "longitudeE7": -766618031, + "placeId": "ChIJkRlLdllx6lIROAUg3ribx1w", + "address": "646 O\u0027Brien Rd, Renfrew, ON K7V 0B4, Canada", + "name": "Dollarama", + "locationConfidence": 3.0191295 + }, { + "latitudeE7": 498958226, + "longitudeE7": -971436390, + "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM", + "address": "364 Smith St, Winnipeg, MB R3B 2H2, Canada", + "name": "Burton Cummings Theatre", + "locationConfidence": 2.5304887 + }, { + "latitudeE7": 498949231, + "longitudeE7": -971423222, + "placeId": "ChIJgdptZFlx6lIREOQggBmeq2A", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "Joanna\u0027s Cafe", + "locationConfidence": 1.6574311 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 20, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 498950286, + "longitudeE7": -971424978, + "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc", + "address": "331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada", + "name": "Regal Beagle Pub", + "locationConfidence": 15.793657, + "isCurrentLocation": true + }, + "endLocation": { + "latitudeE7": 498994270, + "longitudeE7": -971371680, + "placeId": "ChIJ-e_4Ll1x6lIRaselR0eA_U8", + "address": "555 Main Street, Winnipeg, MB R3B 1C3, Canada", + "name": "Centennial Concert Hall", + "locationConfidence": 31.228584 + }, + "duration": { + "startTimestamp": "2013-06-17T15:28:13.664Z", + "endTimestamp": "2013-06-17T15:37:13.411Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498959732, + "lngE7": -971420669 + }, { + "latE7": 499005813, + "lngE7": -971367034 + }], + "source": "BACKFILLED", + "distanceMeters": 752.6729186281965, + "travelMode": "WALK", + "confidence": 0.9991718691537653 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498994270, + "longitudeE7": -971371680, + "placeId": "ChIJ-e_4Ll1x6lIRaselR0eA_U8", + "address": "555 Main Street, Winnipeg, MB R3B 1C3, Canada", + "name": "Centennial Concert Hall", + "locationConfidence": 31.228584 + }, + "duration": { + "startTimestamp": "2013-06-17T15:37:13.411Z", + "endTimestamp": "2013-06-17T17:54:26.354Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 499004409, + "centerLngE7": -971364831, + "visitConfidence": 73, + "otherCandidateLocations": [{ + "latitudeE7": 499000253, + "longitudeE7": -971364389, + "placeId": "ChIJr6oUzEJx6lIRfFLRBjjsZc0", + "address": "190 Rupert Ave, Winnipeg, MB R3B 0N2, Canada", + "name": "The Manitoba Museum", + "locationConfidence": 25.664587 + }, { + "latitudeE7": 496621312, + "longitudeE7": -963204271, + "placeId": "ChIJ2wkmqBIXwFIR9fz9ex8azYk", + "address": "44154 Thurston Rd., Richer, MB R0E 1S0, Canada", + "name": "Cripple Creek Campground", + "locationConfidence": 3.4010973 + }, { + "latitudeE7": 498994159, + "longitudeE7": -971370676, + "placeId": "ChIJv2Ht31xx6lIR9iGTQn1hmE0", + "address": "555 Main St #1060, Winnipeg, MB R3B 1C3, Canada", + "name": "Manitoba Opera", + "locationConfidence": 2.6887937 + }, { + "latitudeE7": 499005190, + "longitudeE7": -971345142, + "placeId": "ChIJ9zkQ8UJx6lIRg-ApoQt2OZk", + "address": "145 Pacific Ave, Winnipeg, MB R3B 2Z6, Canada", + "name": "Manitoba Alpine Ski Division", + "locationConfidence": 2.201894 + }, { + "latitudeE7": 498858225, + "longitudeE7": -973281504, + "placeId": "ChIJxeLX-BEM6lIRTTH_Uo_dUhA", + "address": "3969 Portage Ave, Winnipeg, MB R3K 1W4, Canada", + "name": "BellMTS Iceplex", + "locationConfidence": 1.9682863 + }, { + "latitudeE7": 499007804, + "longitudeE7": -971379835, + "placeId": "ChIJW15BS11x6lIRDzMkFBFPUqM", + "address": "554 Main St, Winnipeg, MB R3B 1C4, Canada", + "name": "McLaren Hotel", + "locationConfidence": 1.6850201 + }, { + "latitudeE7": 498985172, + "longitudeE7": -971364408, + "placeId": "ChIJFef5M0Nx6lIR_fyuBUjYOFY", + "address": "174 Market Ave, Winnipeg, MB R3B 0P8, Canada", + "name": "Royal Manitoba Theatre Centre", + "locationConfidence": 1.6533964 + }, { + "latitudeE7": 499004257, + "longitudeE7": -971368377, + "placeId": "ChIJfb0UzEJx6lIRIc8Zy9bwaUc", + "locationConfidence": 1.5966308 + }, { + "latitudeE7": 499012561, + "longitudeE7": -971359044, + "placeId": "ChIJ-WU0qkJx6lIRmyt6WayEvU8", + "address": "184 Alexander Ave, Winnipeg, MB R3B 0L6, Canada", + "name": "Ukrainian Cultural and Educational Centre", + "locationConfidence": 1.5576468 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 32, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 498994270, + "longitudeE7": -971371680, + "placeId": "ChIJ-e_4Ll1x6lIRaselR0eA_U8", + "address": "555 Main Street, Winnipeg, MB R3B 1C3, Canada", + "name": "Centennial Concert Hall", + "locationConfidence": 31.228584 + }, + "endLocation": { + "latitudeE7": 498937387, + "longitudeE7": -971339957, + "placeId": "ChIJEZ35a0Vx6lIR9HfFTXtB0fE", + "address": "1 Portage Avenue East, Winnipeg, Manitoba R3B 0Y3, Canada", + "name": "Shaw Park", + "locationConfidence": 32.36701 + }, + "duration": { + "startTimestamp": "2013-06-17T17:54:26.354Z", + "endTimestamp": "2013-06-17T18:08:22.760Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 499005737, + "lngE7": -971366806 + }, { + "latE7": 499009284, + "lngE7": -971363677 + }, { + "latE7": 498976287, + "lngE7": -971334915 + }, { + "latE7": 498941612, + "lngE7": -971354217 + }, { + "latE7": 498952560, + "lngE7": -971326904 + }, { + "latE7": 498945083, + "lngE7": -971322784 + }], + "source": "BACKFILLED", + "distanceMeters": 893.7103634366721, + "travelMode": "WALK", + "confidence": 0.9998861648911664 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 499010811, + "lngE7": -971362228, + "accuracyMeters": 40, + "timestamp": "2013-06-17T17:54:26.354Z" + }, { + "latE7": 498979263, + "lngE7": -971331024, + "accuracyMeters": 51, + "timestamp": "2013-06-17T18:02:12.625Z" + }, { + "latE7": 498939972, + "lngE7": -971351776, + "accuracyMeters": 25, + "timestamp": "2013-06-17T18:07:20.588Z" + }, { + "latE7": 498952866, + "lngE7": -971325302, + "accuracyMeters": 10, + "timestamp": "2013-06-17T18:08:22.760Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498937387, + "longitudeE7": -971339957, + "placeId": "ChIJEZ35a0Vx6lIR9HfFTXtB0fE", + "address": "1 Portage Avenue East, Winnipeg, Manitoba R3B 0Y3, Canada", + "name": "Shaw Park", + "locationConfidence": 32.36701 + }, + "duration": { + "startTimestamp": "2013-06-17T18:08:22.760Z", + "endTimestamp": "2013-06-17T18:19:23.428Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498944943, + "centerLngE7": -971328057, + "visitConfidence": 63, + "otherCandidateLocations": [{ + "latitudeE7": 498938935, + "longitudeE7": -971340164, + "placeId": "ChIJm68uFkVx6lIR9R5Ee_D-Lag", + "address": "1 Portage Ave E, Winnipeg, MB R3B 3N3, Canada", + "name": "Winnipeg Goldeyes Baseball Club", + "locationConfidence": 9.984342 + }, { + "latitudeE7": 498930690, + "longitudeE7": -971332270, + "placeId": "ChIJ52glbEVx6lIRx7NBYRxWs_o", + "address": "1 Portage Ave E #3, Winnipeg, MB R3B 3N3, Canada", + "name": "Clay Oven", + "locationConfidence": 7.8316045, + "isCurrentLocation": true + }, { + "latitudeE7": 498959470, + "longitudeE7": -971380360, + "placeId": "ChIJd_1FaVtx6lIRzi99yIk0UC8", + "address": "1 Lombard Pl #600, Winnipeg, MB R3B 0Y1, Canada", + "name": "David Aplin Group", + "locationConfidence": 3.5898688 + }, { + "latitudeE7": 498949182, + "longitudeE7": -971328441, + "placeId": "ChIJeefJ_kRx6lIRnrRLpvGARFE", + "address": "Winnipeg, MB R3C, Canada", + "name": "Southbound Waterfront at Lombard", + "locationConfidence": 3.440532 + }, { + "latitudeE7": 498962180, + "longitudeE7": -971380953, + "placeId": "ChIJd_1FaVtx6lIRSZEawAziRqY", + "address": "1240 – One Lombard Place, Winnipeg, MB R3B 0V9, Canada", + "name": "Wynward Insurance Group", + "locationConfidence": 1.6366597 + }, { + "latitudeE7": 498970323, + "longitudeE7": -971328837, + "placeId": "ChIJCWXlfkRx6lIR1rzR6bfogQE", + "address": "130 Galt Ave, Winnipeg, MB R3B 0M3, Canada", + "name": "Stephen Juba Park", + "locationConfidence": 1.5821978 + }, { + "latitudeE7": 498632080, + "longitudeE7": -971852597, + "placeId": "ChIJd_1FaVtx6lIRaGKP2yw2D-Q", + "address": "100-443 Academy Rd, Winnipeg, MB R3N 1X1, Canada", + "name": "Loka Clothing \u0026 Accessories", + "locationConfidence": 1.145952 + }, { + "latitudeE7": 498958037, + "longitudeE7": -971369775, + "placeId": "ChIJY29DP1tx6lIRCjqton0ZIQw", + "address": "2 Lombard Place, Winnipeg, MB R3B 0Y3, Canada", + "name": "Fairmont Winnipeg", + "locationConfidence": 1.1443303 + }, { + "latitudeE7": 498957078, + "longitudeE7": -971343625, + "placeId": "ChIJ_Yk4UN-aX0sRdLBI9O7pR4A", + "address": "195 Macewen Rd, Summerside, PE C1N 5Y4, Canada", + "name": "WSP", + "locationConfidence": 1.1396369 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "simplifiedRawPath": { + "points": [{ + "latE7": 498952856, + "lngE7": -971325271, + "accuracyMeters": 10, + "timestamp": "2013-06-17T18:08:22.760Z" + }, { + "latE7": 498952856, + "lngE7": -971325271, + "accuracyMeters": 10, + "timestamp": "2013-06-17T18:09:51.877Z" + }, { + "latE7": 498941840, + "lngE7": -971329227, + "accuracyMeters": 27, + "timestamp": "2013-06-17T18:10:53.037Z" + }, { + "latE7": 498941840, + "lngE7": -971329227, + "accuracyMeters": 27, + "timestamp": "2013-06-17T18:12:21.810Z" + }, { + "latE7": 498941840, + "lngE7": -971329227, + "accuracyMeters": 27, + "timestamp": "2013-06-17T18:15:21.772Z" + }, { + "latE7": 498941840, + "lngE7": -971329227, + "accuracyMeters": 27, + "timestamp": "2013-06-17T18:18:21.525Z" + }], + "source": "BACKFILLED", + "distanceMeters": 125.72756741892577 + }, + "locationConfidence": 33, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-17T18:19:23.428Z", + "endTimestamp": "2013-06-17T18:28:25.731Z" + }, + "distance": 1072, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498945083, + "lngE7": -971322784 + }, { + "latE7": 498949966, + "lngE7": -971265411 + }], + "source": "BACKFILLED", + "distanceMeters": 1266.384475164792, + "travelMode": "WALK", + "confidence": 0.956357995262264 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-17T18:33:35.329Z", + "endTimestamp": "2013-06-17T18:38:41.244Z" + }, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498949966, + "lngE7": -971265411 + }, { + "latE7": 498974227, + "lngE7": -971286163 + }, { + "latE7": 498985252, + "lngE7": -971263809 + }], + "source": "BACKFILLED", + "distanceMeters": 515.1413392215139, + "travelMode": "WALK", + "confidence": 0.8230793472858142 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 498972588, + "lngE7": -971285172, + "accuracyMeters": 45, + "timestamp": "2013-06-17T18:37:39.982Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498989845, + "longitudeE7": -971253343, + "placeId": "ChIJV_fK90Zx6lIRkaafhsfe3BA", + "address": "866 Rue Saint Joseph, Winnipeg, Manitoba R2H 0G4, Canada", + "name": "Fort Gibraltar", + "locationConfidence": 25.25391 + }, + "duration": { + "startTimestamp": "2013-06-17T18:38:41.244Z", + "endTimestamp": "2013-06-17T19:11:27.392Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498985661, + "centerLngE7": -971263287, + "visitConfidence": 75, + "otherCandidateLocations": [{ + "latitudeE7": 498895303, + "longitudeE7": -972365224, + "placeId": "ChIJu5mtwUBx6lIRS0-mktBObRo", + "address": "186 Air Force Way, Winnipeg, MB R3J, Canada", + "name": "Air Force Heritage Park", + "locationConfidence": 12.974185 + }, { + "latitudeE7": 498987950, + "longitudeE7": -971257520, + "placeId": "ChIJu5mtwUBx6lIRUgvO1wdOJWM", + "address": "Winnipeg, MB R2H, Canada", + "name": "The Manitoba Christmas Craft Sale", + "locationConfidence": 11.829172 + }, { + "latitudeE7": 498987950, + "longitudeE7": -971257520, + "placeId": "ChIJu5mtwUBx6lIRGrjZwOeoPO8", + "address": "Winnipeg, MB R2H, Canada", + "name": "Old Saint-Boniface Walking Tours", + "locationConfidence": 11.781609 + }, { + "latitudeE7": 498984706, + "longitudeE7": -971241402, + "placeId": "ChIJe4WqOjlx6lIRxF2TcOLB-dY", + "address": "836 Rue St Joseph, Winnipeg, MB R2Y 0H8, Canada", + "name": "Whittier Park", + "locationConfidence": 7.8543043 + }, { + "latitudeE7": 498994722, + "longitudeE7": -971251488, + "placeId": "ChIJF66vkUBx6lIRun6CheBM1XU", + "address": "Winnipeg, MB R2H, Canada", + "name": "Maison Chaboillez House", + "locationConfidence": 6.999331 + }, { + "latitudeE7": 498984750, + "longitudeE7": -971398210, + "placeId": "ChIJIY03hltx6lIRC7k50ydfVx0", + "address": "492 Main St, Winnipeg, MB R3B 1B7, Canada", + "name": "Exchange District BIZ", + "locationConfidence": 4.2326684 + }, { + "latitudeE7": 498987950, + "longitudeE7": -971257520, + "placeId": "ChIJu5mtwUBx6lIRH0SY48Jzs6M", + "locationConfidence": 2.8435194 + }, { + "latitudeE7": 498987950, + "longitudeE7": -971257520, + "placeId": "ChIJu5mtwUBx6lIRlspsl0aGhAE", + "locationConfidence": 2.7105994 + }, { + "latitudeE7": 498987950, + "longitudeE7": -971257520, + "placeId": "ChIJu5mtwUBx6lIRmJykg-49Jvk", + "locationConfidence": 2.7089252 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 27, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 498989845, + "longitudeE7": -971253343, + "placeId": "ChIJV_fK90Zx6lIRkaafhsfe3BA", + "address": "866 Rue Saint Joseph, Winnipeg, Manitoba R2H 0G4, Canada", + "name": "Fort Gibraltar", + "locationConfidence": 25.25391 + }, + "endLocation": { + "latitudeE7": 498917283, + "longitudeE7": -971228653, + "placeId": "ChIJ8V1gGkhx6lIRr2fHnijyQOE", + "address": "166 Provencher Boulevard, Winnipeg, Manitoba R2H 1Z2, Canada", + "name": "Le Garage", + "locationConfidence": 28.909367 + }, + "duration": { + "startTimestamp": "2013-06-17T19:11:27.392Z", + "endTimestamp": "2013-06-17T19:23:23.972Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498985252, + "lngE7": -971263809 + }, { + "latE7": 498941650, + "lngE7": -971144714 + }, { + "latE7": 498918914, + "lngE7": -971227798 + }], + "source": "BACKFILLED", + "distanceMeters": 811.7402919283828, + "travelMode": "WALK", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 498940887, + "lngE7": -971144257, + "accuracyMeters": 45, + "timestamp": "2013-06-17T19:14:23.434Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498917283, + "longitudeE7": -971228653, + "placeId": "ChIJ8V1gGkhx6lIRr2fHnijyQOE", + "address": "166 Provencher Boulevard, Winnipeg, Manitoba R2H 1Z2, Canada", + "name": "Le Garage", + "locationConfidence": 28.909367 + }, + "duration": { + "startTimestamp": "2013-06-17T19:23:23.972Z", + "endTimestamp": "2013-06-17T20:02:40.505Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498918315, + "centerLngE7": -971227341, + "visitConfidence": 76, + "otherCandidateLocations": [{ + "latitudeE7": 498920220, + "longitudeE7": -971234812, + "placeId": "ChIJZ1f6DUhx6lIR4vgnhkDjIIo", + "address": "157 Provencher Blvd, Winnipeg, MB R2H 0G2, Canada", + "name": "Dwarf no Cachette Café \u0026 Gift", + "locationConfidence": 5.744521 + }, { + "latitudeE7": 498912360, + "longitudeE7": -971244690, + "placeId": "ChIJ__9PXUhx6lIR-04qMxrGsyo", + "address": "130 Provencher Blvd, Winnipeg, MB R2H 0H3, Canada", + "name": "Pizza Hotline Stone Fired", + "locationConfidence": 5.0575776 + }, { + "latitudeE7": 498888611, + "longitudeE7": -971197352, + "placeId": "ChIJV-IxEzZx6lIR5fWoO-07raE", + "address": "200 Av. de la Cathedrale, Winnipeg, MB R2H 0H7, Canada", + "name": "Université de Saint-Boniface", + "locationConfidence": 4.531164 + }, { + "latitudeE7": 498919891, + "longitudeE7": -971222333, + "placeId": "ChIJ3TBgpmFz6lIRTfo_AVSzg6c", + "locationConfidence": 3.9552674 + }, { + "latitudeE7": 498923840, + "longitudeE7": -971223520, + "placeId": "ChIJ4-3v_Tdx6lIRm-tfsUzYw14", + "address": "179 Provencher Blvd, Winnipeg, MB R2H 0G4, Canada", + "name": "National Bank", + "locationConfidence": 2.5322363 + }, { + "latitudeE7": 498918330, + "longitudeE7": -971247670, + "placeId": "ChIJYfVRYUhx6lIRkgkY2n2GZYE", + "address": "114-131 Provencher Blvd, Winnipeg, MB R2H 0G2, Canada", + "name": "Q-Power Communications", + "locationConfidence": 2.0694814 + }, { + "latitudeE7": 498909360, + "longitudeE7": -971231440, + "placeId": "ChIJ-_9hOUhx6lIRZG5wFnMI8T8", + "locationConfidence": 1.8025706 + }, { + "latitudeE7": 498922186, + "longitudeE7": -971210267, + "placeId": "ChIJ-yzO8zdx6lIRb4Rf-RRMOb4", + "address": "202 Provencher Blvd, Winnipeg, MB R2H 0G3, Canada", + "name": "Café Postal", + "locationConfidence": 1.6363338 + }, { + "latitudeE7": 498920489, + "longitudeE7": -971224927, + "placeId": "ChIJBSqgD0hx6lIRsAxjFF7eSzQ", + "address": "169 Provencher Blvd, Winnipeg, MB R2H 0G2, Canada", + "name": "City Centre Auto", + "locationConfidence": 1.546998 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 30, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-17T20:02:40.505Z", + "endTimestamp": "2013-06-17T20:08:38.153Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498918914, + "lngE7": -971227798 + }, { + "latE7": 498910369, + "lngE7": -971280822 + }], + "source": "BACKFILLED", + "distanceMeters": 409.4332934253089, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-17T20:08:38.153Z", + "endTimestamp": "2013-06-17T22:43:16.919Z" + }, + "distance": 1157, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498958226, + "longitudeE7": -971436390, + "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM", + "address": "364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada", + "name": "Burton Cummings Theatre", + "locationConfidence": 12.802299 + }, + "duration": { + "startTimestamp": "2013-06-17T22:43:16.919Z", + "endTimestamp": "2013-06-18T01:24:09.526Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498952460, + "centerLngE7": -971430152, + "visitConfidence": 81, + "otherCandidateLocations": [{ + "latitudeE7": 498950286, + "longitudeE7": -971424978, + "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc", + "address": "331 Smith St, Winnipeg, MB R3B 2H6, Canada", + "name": "Regal Beagle Pub", + "locationConfidence": 11.25425 + }, { + "latitudeE7": 498949340, + "longitudeE7": -971423496, + "placeId": "ChIJgdptZFlx6lIR9qLxdl0p43M", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "The Marlborough Hotel", + "locationConfidence": 10.349293 + }, { + "latitudeE7": 498941390, + "longitudeE7": -971433210, + "placeId": "ChIJJ_3NoVlx6lIRjo88zBaOvFE", + "address": "303 Portage Ave, Winnipeg, MB R3B 2B4, Canada", + "name": "MEC Winnipeg", + "locationConfidence": 10.267812 + }, { + "latitudeE7": 498954599, + "longitudeE7": -971416623, + "placeId": "ChIJZ8a_3Ftx6lIRKryC6rxnUpk", + "address": "330 Garry St, Winnipeg, MB R3B 2G7, Canada", + "name": "The Garrick", + "locationConfidence": 4.987304 + }, { + "latitudeE7": 498955346, + "longitudeE7": -971435179, + "placeId": "ChIJgbiballx6lIR2sCbew3KhDY", + "address": "283 Ellice Ave, Winnipeg, MB R3B 1X6, Canada", + "name": "Enterprise Rent-A-Car", + "locationConfidence": 4.5866437 + }, { + "latitudeE7": 498949407, + "longitudeE7": -971424657, + "placeId": "ChIJYSPpY1lx6lIRBjtSwQfg1cA", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "Centennial Theatre, Main St., Winnipeg", + "locationConfidence": 3.9242735 + }, { + "latitudeE7": 498936546, + "longitudeE7": -971424676, + "placeId": "ChIJa4ZNf1lx6lIR1JKYLNtNMLc", + "address": "288 Portage Ave, Winnipeg, MB R3C 0B8, Canada", + "name": "Radisson Hotel Winnipeg Downtown", + "locationConfidence": 3.2016091 + }, { + "latitudeE7": 498954308, + "longitudeE7": -971407927, + "placeId": "ChIJ_0OZ6ltx6lIR0G76_1Qqfd4", + "address": "216 Notre Dame Ave, Winnipeg, MB R3B 1N6, Canada", + "name": "Solid Gold Club", + "locationConfidence": 2.4952471 + }, { + "latitudeE7": 498955542, + "longitudeE7": -971434760, + "placeId": "ChIJ0x4Iallx6lIRaGrESW16kd0", + "name": "Alamo", + "locationConfidence": 1.4263405 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 17, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-18T01:24:09.526Z", + "endTimestamp": "2013-06-18T01:28:14.903Z" + }, + "distance": 145, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498953437, + "lngE7": -971428756 + }, { + "latE7": 498940849, + "lngE7": -971425781 + }], + "source": "BACKFILLED", + "distanceMeters": 163.87123114547506, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-18T01:28:14.903Z", + "endTimestamp": "2013-06-18T01:29:56.111Z" + }, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498979098, + "longitudeE7": -971407404, + "placeId": "ChIJvbW3aVxx6lIRvMCQVRc676U", + "address": "100 Arthur St, Winnipeg, MB R3B 1H3, Canada", + "name": "Winnipeg International Writers Festival", + "locationConfidence": 5.0738072 + }, + "duration": { + "startTimestamp": "2013-06-18T01:29:56.111Z", + "endTimestamp": "2013-06-18T02:09:59.602Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498978050, + "centerLngE7": -971404150, + "visitConfidence": 76, + "otherCandidateLocations": [{ + "latitudeE7": 498980272, + "longitudeE7": -971408817, + "placeId": "ChIJeV2miVtx6lIRjQX6vWXHuh8", + "address": "100 Arthur St #003, Winnipeg, MB R3B 1H3, Canada", + "name": "On Screen Manitoba Inc", + "locationConfidence": 3.4836946 + }, { + "latitudeE7": 498972280, + "longitudeE7": -971406540, + "placeId": "ChIJcSrCcVxx6lIRkGQfEDEWLKU", + "address": "231 McDermot Ave, Winnipeg, MB R3B 0S5, Canada", + "name": "Mariaggi\u0027s Theme Suite Hotel and Spa", + "locationConfidence": 3.4555557 + }, { + "latitudeE7": 498978885, + "longitudeE7": -971404449, + "placeId": "ChIJo4a1YFdx6lIRUTbdASun7XM", + "address": "98 Albert St, Winnipeg, MB R3B 1G2, Canada", + "name": "Bodegoes", + "locationConfidence": 3.1877067 + }, { + "latitudeE7": 498979862, + "longitudeE7": -971394474, + "placeId": "ChIJGRtSZFxx6lIROKlbz0gJtVk", + "address": "211 Bannatyne Ave, Winnipeg, MB R3B 1M3, Canada", + "name": "Across the Board Game Café", + "locationConfidence": 3.1599448 + }, { + "latitudeE7": 498980550, + "longitudeE7": -971407540, + "placeId": "ChIJ11FdaFxx6lIRulu7uaKe1J8", + "address": "100 Arthur St, Winnipeg, MB R3B 1H3, Canada", + "name": "Winnipeg Cinematheque", + "locationConfidence": 3.0585418 + }, { + "latitudeE7": 498975107, + "longitudeE7": -971399480, + "placeId": "ChIJ3arTZVxx6lIRZ4_NmlD4u4c", + "address": "91 Albert Street Basement, Winnipeg, MB R3B 1G5, Canada", + "name": "Natural Cycleworks", + "locationConfidence": 2.8559704 + }, { + "latitudeE7": 498988022, + "longitudeE7": -971410024, + "placeId": "ChIJ5RC2T1xx6lIRdBI_JXBLrC4", + "address": "120 King St, Winnipeg, MB R3B 1H9, Canada", + "name": "King\u0027s Head Pub", + "locationConfidence": 2.214847 + }, { + "latitudeE7": 498984857, + "longitudeE7": -971400645, + "placeId": "ChIJJ_H9Zlxx6lIRboLtzsEZOrI", + "address": "131 Albert St, Winnipeg, MB R3B 1G6, Canada", + "name": "Smoke\u0027s Poutinerie", + "locationConfidence": 2.1243281 + }, { + "latitudeE7": 498981454, + "longitudeE7": -971403914, + "placeId": "ChIJ9cUFXVxx6lIRz7O9mWoIsek", + "address": "211 Bannatyne Ave, Winnipeg, MB R3B 3P2, Canada", + "name": "Winnipeg Police District", + "locationConfidence": 2.0398731 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 11, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 498979098, + "longitudeE7": -971407404, + "placeId": "ChIJvbW3aVxx6lIRvMCQVRc676U", + "address": "100 Arthur St, Winnipeg, MB R3B 1H3, Canada", + "name": "Winnipeg International Writers Festival", + "locationConfidence": 5.0738072 + }, + "endLocation": { + "latitudeE7": 498979974, + "longitudeE7": -971372535, + "placeId": "ChIJsf-qvlxx6lIRmmkIe3LrTCg", + "address": "179 Bannatyne Avenue, Winnipeg, Manitoba R3B 0R5, Canada", + "name": "Hermanos South American Steakhouse", + "locationConfidence": 12.109326 + }, + "duration": { + "startTimestamp": "2013-06-18T02:09:59.602Z", + "endTimestamp": "2013-06-18T02:11:00.566Z" + }, + "distance": 180, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498979974, + "longitudeE7": -971372535, + "placeId": "ChIJsf-qvlxx6lIRmmkIe3LrTCg", + "address": "179 Bannatyne Avenue, Winnipeg, Manitoba R3B 0R5, Canada", + "name": "Hermanos South American Steakhouse", + "locationConfidence": 12.109326 + }, + "duration": { + "startTimestamp": "2013-06-18T02:11:00.566Z", + "endTimestamp": "2013-06-18T02:29:12.825Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498976393, + "centerLngE7": -971379140, + "visitConfidence": 77, + "otherCandidateLocations": [{ + "latitudeE7": 498980110, + "longitudeE7": -971377964, + "placeId": "ChIJsf-qvlxx6lIReIXzOYYYUUM", + "address": "179 Bannatyne Ave, Winnipeg, MB R3B 0R7, Canada", + "name": "Blufish Japanese Restaurant", + "locationConfidence": 8.817096 + }, { + "latitudeE7": 498974000, + "longitudeE7": -971376040, + "placeId": "ChIJ-Xrno1xx6lIRKvxg3NhbNXc", + "address": "177 McDermot Ave, Winnipeg, MB R3B 0S1, Canada", + "name": "Wee Johnny\u0027s Irish Pub", + "locationConfidence": 4.059743 + }, { + "latitudeE7": 498973009, + "longitudeE7": -971374092, + "placeId": "ChIJxdFkoVxx6lIR2UdK8na8ju8", + "address": "173 McDermot Ave, Winnipeg, MB R3B 0S1, Canada", + "name": "The Mitchell Block", + "locationConfidence": 3.2561479 + }, { + "latitudeE7": 498972860, + "longitudeE7": -971378854, + "placeId": "ChIJdddsolxx6lIRtn9foDWAS8k", + "locationConfidence": 2.2527435 + }, { + "latitudeE7": 498971840, + "longitudeE7": -971379110, + "placeId": "ChIJMdn9oVxx6lIRNi494L9_LOY", + "locationConfidence": 2.0185983 + }, { + "latitudeE7": 498970457, + "longitudeE7": -971387290, + "placeId": "ChIJxWAAY1xx6lIRsQwjiH8pIaE", + "address": "1B6, 456 Main St, Winnipeg, MB R3B 1B7, Canada", + "name": "Fox \u0026 Fiddle", + "locationConfidence": 1.7900082 + }, { + "latitudeE7": 498974235, + "longitudeE7": -971382796, + "placeId": "ChIJ8zVpkFxx6lIR7t-r5qp5CJo", + "address": "2090 Jefferson Ave, Winnipeg, MB R2R 3A3, Canada", + "name": "Bumper Crop Early Learning Centre", + "locationConfidence": 1.6236441 + }, { + "latitudeE7": 498977821, + "longitudeE7": -971384408, + "placeId": "ChIJo5kVkVxx6lIR2gw6pnFqTww", + "name": "Passport Photo West", + "locationConfidence": 1.5009921 + }, { + "latitudeE7": 498958037, + "longitudeE7": -971369775, + "placeId": "ChIJY29DP1tx6lIRCjqton0ZIQw", + "address": "2 Lombard Place, Winnipeg, MB R3B 0Y3, Canada", + "name": "Fairmont Winnipeg", + "locationConfidence": 1.3883173 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 17, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 498979974, + "longitudeE7": -971372535, + "placeId": "ChIJsf-qvlxx6lIRmmkIe3LrTCg", + "address": "179 Bannatyne Avenue, Winnipeg, Manitoba R3B 0R5, Canada", + "name": "Hermanos South American Steakhouse", + "locationConfidence": 12.109326 + }, + "endLocation": { + "latitudeE7": 498950286, + "longitudeE7": -971424978, + "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc", + "address": "331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada", + "name": "Regal Beagle Pub", + "locationConfidence": 12.133938 + }, + "duration": { + "startTimestamp": "2013-06-18T02:29:12.825Z", + "endTimestamp": "2013-06-18T02:45:46.829Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498978462, + "lngE7": -971377716 + }, { + "latE7": 498940048, + "lngE7": -971392517 + }, { + "latE7": 498909606, + "lngE7": -971405563 + }, { + "latE7": 498940315, + "lngE7": -971407623 + }, { + "latE7": 498946723, + "lngE7": -971425476 + }, { + "latE7": 498953590, + "lngE7": -971428146 + }], + "source": "BACKFILLED", + "distanceMeters": 584.8094506873913, + "travelMode": "WALK", + "confidence": 0.9949049079624444 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 498940544, + "lngE7": -971390457, + "accuracyMeters": 15, + "timestamp": "2013-06-18T02:34:13.891Z" + }, { + "latE7": 498910065, + "lngE7": -971406708, + "accuracyMeters": 10, + "timestamp": "2013-06-18T02:39:13.958Z" + }, { + "latE7": 498939590, + "lngE7": -971410980, + "accuracyMeters": 36, + "timestamp": "2013-06-18T02:43:46.105Z" + }, { + "latE7": 498946075, + "lngE7": -971428146, + "accuracyMeters": 30, + "timestamp": "2013-06-18T02:45:46.829Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498950286, + "longitudeE7": -971424978, + "placeId": "ChIJbSsFZFlx6lIRltV2ye6NvZc", + "address": "331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada", + "name": "Regal Beagle Pub", + "locationConfidence": 12.133938 + }, + "duration": { + "startTimestamp": "2013-06-18T02:45:46.829Z", + "endTimestamp": "2013-06-18T15:49:43.536Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498953092, + "centerLngE7": -971428262, + "visitConfidence": 93, + "otherCandidateLocations": [{ + "latitudeE7": 498958226, + "longitudeE7": -971436390, + "placeId": "ChIJ4-gTRllx6lIR6Ycy_ov80FM", + "address": "364 Smith St, Winnipeg, MB R3B 2H2, Canada", + "name": "Burton Cummings Theatre", + "locationConfidence": 11.292536 + }, { + "latitudeE7": 498949340, + "longitudeE7": -971423496, + "placeId": "ChIJgdptZFlx6lIR9qLxdl0p43M", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "The Marlborough Hotel", + "locationConfidence": 10.798287 + }, { + "latitudeE7": 498941390, + "longitudeE7": -971433210, + "placeId": "ChIJJ_3NoVlx6lIRjo88zBaOvFE", + "address": "303 Portage Ave, Winnipeg, MB R3B 2B4, Canada", + "name": "MEC Winnipeg", + "locationConfidence": 8.169121 + }, { + "latitudeE7": 498954599, + "longitudeE7": -971416623, + "placeId": "ChIJZ8a_3Ftx6lIRKryC6rxnUpk", + "address": "330 Garry St, Winnipeg, MB R3B 2G7, Canada", + "name": "The Garrick", + "locationConfidence": 5.520603 + }, { + "latitudeE7": 498949407, + "longitudeE7": -971424657, + "placeId": "ChIJYSPpY1lx6lIRBjtSwQfg1cA", + "address": "331 Smith St, Winnipeg, MB R3B 2G9, Canada", + "name": "Centennial Theatre, Main St., Winnipeg", + "locationConfidence": 4.094534 + }, { + "latitudeE7": 498955346, + "longitudeE7": -971435179, + "placeId": "ChIJgbiballx6lIR2sCbew3KhDY", + "address": "283 Ellice Ave, Winnipeg, MB R3B 1X6, Canada", + "name": "Enterprise Rent-A-Car", + "locationConfidence": 3.0775685 + }, { + "latitudeE7": 498954308, + "longitudeE7": -971407927, + "placeId": "ChIJ_0OZ6ltx6lIR0G76_1Qqfd4", + "address": "216 Notre Dame Ave, Winnipeg, MB R3B 1N6, Canada", + "name": "Solid Gold Club", + "locationConfidence": 2.8692768 + }, { + "latitudeE7": 498944839, + "longitudeE7": -971420133, + "placeId": "ChIJz6MM6Vtx6lIRtBpp1SrO71M", + "address": "271 Portage Ave, Winnipeg, MB R3B 2A8, Canada", + "name": "Manitoba Start", + "locationConfidence": 2.4012368 + }, { + "latitudeE7": 498936546, + "longitudeE7": -971424676, + "placeId": "ChIJa4ZNf1lx6lIR1JKYLNtNMLc", + "address": "288 Portage Ave, Winnipeg, MB R3C 0B8, Canada", + "name": "Radisson Hotel Winnipeg Downtown", + "locationConfidence": 1.7105491 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 17, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-18T15:49:43.536Z", + "endTimestamp": "2013-06-18T15:57:47.135Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498943901, + "lngE7": -971431884 + }, { + "latE7": 498935394, + "lngE7": -971404953 + }, { + "latE7": 498875160, + "lngE7": -971340179 + }], + "source": "BACKFILLED", + "distanceMeters": 1649.894539092685, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 498935318, + "lngE7": -971405258, + "accuracyMeters": 49, + "timestamp": "2013-06-18T15:50:43.544Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-18T15:57:47.135Z", + "endTimestamp": "2013-06-18T16:00:44.493Z" + }, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498875160, + "lngE7": -971340179 + }, { + "latE7": 498870468, + "lngE7": -971306915 + }], + "source": "BACKFILLED", + "distanceMeters": 377.5390655964906, + "travelMode": "WALK", + "confidence": 0.9620622927498174 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498873038, + "longitudeE7": -971309463, + "placeId": "ChIJ7_XiiE5x6lIRDco8RsvvpaM", + "address": "1 Forks Market Road, Winnipeg, Manitoba R3C 4L9, Canada", + "name": "The Original Pancake House", + "locationConfidence": 16.196375, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-06-18T16:00:44.493Z", + "endTimestamp": "2013-06-18T16:21:37.459Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 498872657, + "centerLngE7": -971313286, + "visitConfidence": 65, + "otherCandidateLocations": [{ + "latitudeE7": 498872736, + "longitudeE7": -971313418, + "placeId": "ChIJ3yxlj05x6lIRZe49Vd5a2jU", + "locationConfidence": 11.813349, + "isCurrentLocation": true + }, { + "latitudeE7": 498871675, + "longitudeE7": -971313594, + "placeId": "ChIJQ1UN101x6lIRod6AOBBrLvU", + "address": "1 Forks Market Rd, Winnipeg, MB R3C 4L8, Canada", + "name": "The Forks", + "locationConfidence": 7.8584557, + "isCurrentLocation": true + }, { + "latitudeE7": 498874090, + "longitudeE7": -971313246, + "placeId": "ChIJ7_XiiE5x6lIRAjmD9U76iQ0", + "address": "1 Forks Market Rd #106, Winnipeg, MB R3C 4L9, Canada", + "name": "Ellement Wine + Spirits", + "locationConfidence": 6.725011, + "isCurrentLocation": true + }, { + "latitudeE7": 498873433, + "longitudeE7": -971310729, + "placeId": "ChIJ7_XiiE5x6lIRTY4LjMMB0go", + "address": "564 Main St, Winnipeg, MB R3B 1C6, Canada", + "name": "Sk8 Skates", + "locationConfidence": 5.4158144, + "isCurrentLocation": true + }, { + "latitudeE7": 498867994, + "longitudeE7": -971313345, + "placeId": "ChIJ7_XiiE5x6lIRaXP4OPm8W7M", + "address": "Parking lot, 1 Forks Market Rd, Winnipeg, MB R3C 0A2, Canada", + "name": "Danny\u0027s All Day Breakfast", + "locationConfidence": 4.6309257, + "isCurrentLocation": true + }, { + "latitudeE7": 498867202, + "longitudeE7": -971314768, + "placeId": "ChIJ7_XiiE5x6lIR5kxSl_7DpTY", + "address": "1 Forks Market Rd, Winnipeg, MB R3C 4L8, Canada", + "name": "Beachcomber", + "locationConfidence": 3.559982, + "isCurrentLocation": true + }, { + "latitudeE7": 498870659, + "longitudeE7": -971314518, + "placeId": "ChIJ7_XiiE5x6lIRnz19DCT3JVw", + "address": "1 Forks Market Rd, Winnipeg, MB R3C 4Y3, Canada", + "name": "Tall Grass Prairie Bread Co.", + "locationConfidence": 3.4041603, + "isCurrentLocation": true + }, { + "latitudeE7": 498977727, + "longitudeE7": -971384353, + "placeId": "ChIJOfviiE5x6lIRmftMEPT-Y1g", + "address": "433 Main St Unit 100, Winnipeg, MB R3B 1B3, Canada", + "name": "Generation Green in The Exchange", + "locationConfidence": 3.1507223, + "isCurrentLocation": true + }, { + "latitudeE7": 498871675, + "longitudeE7": -971313594, + "placeId": "ChIJQ1UN101x6lIRod6AOBBrLvU", + "address": "1 Forks Market Rd, Winnipeg, MB R3C 4L8, Canada", + "name": "The Forks", + "locationConfidence": 2.9484973, + "isCurrentLocation": true + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 20, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-18T16:21:37.459Z", + "endTimestamp": "2013-06-18T16:25:04.783Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498867607, + "lngE7": -971310958 + }, { + "latE7": 498892898, + "lngE7": -971316909 + }], + "source": "BACKFILLED", + "distanceMeters": 353.295973512393, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-18T16:25:04.783Z", + "endTimestamp": "2013-06-18T16:45:29.816Z" + }, + "distance": 10442, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498892898, + "lngE7": -971316909 + }, { + "latE7": 498911857, + "lngE7": -971324462 + }, { + "latE7": 498892898, + "lngE7": -971352386 + }, { + "latE7": 498773956, + "lngE7": -972705917 + }], + "source": "BACKFILLED", + "distanceMeters": 10798.192452584037, + "travelMode": "DRIVE", + "confidence": 0.9999980560027785 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 498911743, + "lngE7": -971324234, + "accuracyMeters": 20, + "timestamp": "2013-06-18T16:26:04.993Z" + }, { + "latE7": 498892632, + "lngE7": -971353760, + "accuracyMeters": 10, + "timestamp": "2013-06-18T16:29:13.990Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 498827586, + "longitudeE7": -972884196, + "placeId": "ChIJIYhYcoUM6lIRzPvdS_Slt34", + "address": "3193 Portage Avenue, Winnipeg, Manitoba R3K 0W4, Canada", + "name": "Real Canadian Superstore", + "locationConfidence": 66.230965 + }, + "duration": { + "startTimestamp": "2013-06-18T16:48:01.386Z", + "endTimestamp": "2013-06-18T17:32:25.913Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 498820862, + "centerLngE7": -972883988, + "visitConfidence": 65, + "otherCandidateLocations": [{ + "latitudeE7": 498804954, + "longitudeE7": -972883166, + "placeId": "ChIJJx_dDYUM6lIRMKmmfqoyFB8", + "address": "3180 Portage Ave, Winnipeg, MB R3K 0Y5, Canada", + "name": "Historical Museum of St James", + "locationConfidence": 2.3640113 + }, { + "latitudeE7": 498820280, + "longitudeE7": -972887880, + "placeId": "ChIJ7aEvc4UM6lIRPgzWosVCmSE", + "address": "3193 Portage Ave, Winnipeg, MB R3K 0W4, Canada", + "name": "President\u0027s Choice Financial Pavilion and ATM", + "locationConfidence": 2.203087 + }, { + "latitudeE7": 498827959, + "longitudeE7": -972884093, + "placeId": "ChIJIQZG45oM6lIRd-oiU3KMdmg", + "address": "3193 Portage Ave, Winnipeg, MB R3K 0W4, Canada", + "name": "The Mobile Shop", + "locationConfidence": 2.0053961 + }, { + "latitudeE7": 498804329, + "longitudeE7": -972875481, + "placeId": "ChIJgW95O4UM6lIRU_G74xD3YDw", + "address": "3166 Portage Ave Unit #6, Winnipeg, MB R3K 0Y5, Canada", + "name": "Canadian Healthcare Products", + "locationConfidence": 1.3943716 + }, { + "latitudeE7": 498815610, + "longitudeE7": -972903230, + "placeId": "ChIJp8DWH4gM6lIROYANmujIALI", + "address": "3217 Portage Ave, Winnipeg, MB R3K 0W5, Canada", + "name": "Assiniboine Credit Union", + "locationConfidence": 1.2170662 + }, { + "latitudeE7": 498810018, + "longitudeE7": -972854951, + "placeId": "ChIJ2_fvMoUM6lIRW8EqKeflsJE", + "address": "3735 Portage Ave, Winnipeg, MB R3K 2A8, Canada", + "name": "Gondola Pizza Restaurants", + "locationConfidence": 1.1024776 + }, { + "latitudeE7": 498805070, + "longitudeE7": -972874119, + "placeId": "ChIJxbMgGIUM6lIRFkPg1kDeVZs", + "address": "3166 Portage Ave, Winnipeg, MB R3K 0Y5, Canada", + "name": "Pizza Hotline", + "locationConfidence": 1.0602415 + }, { + "latitudeE7": 498817068, + "longitudeE7": -972894176, + "placeId": "ChIJFUnTnIUM6lIR5egsliXM9yQ", + "name": "Headingley Traffic Services", + "locationConfidence": 0.9196489 + }, { + "latitudeE7": 498811201, + "longitudeE7": -972871857, + "placeId": "ChIJozboPoUM6lIRN01KPwLJrBc", + "address": "3161 Portage Ave, Winnipeg, MB R3K 0W4, Canada", + "name": "Crosstown Civic Credit Union", + "locationConfidence": 0.75107455 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 61, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-18T17:32:25.913Z", + "endTimestamp": "2013-06-18T19:40:27.214Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 498817100, + "lngE7": -972883834 + }, { + "latE7": 498834991, + "lngE7": -972958145 + }, { + "latE7": 499050827, + "lngE7": -977601852 + }, { + "latE7": 502262611, + "lngE7": -994764328 + }], + "source": "BACKFILLED", + "distanceMeters": 181130.26935862022, + "travelMode": "DRIVE", + "confidence": 0.9493489100775365 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 498833961, + "lngE7": -972958145, + "accuracyMeters": 35, + "timestamp": "2013-06-18T17:34:30.057Z" + }, { + "latE7": 499057198, + "lngE7": -977601700, + "accuracyMeters": 35, + "timestamp": "2013-06-18T18:01:46.653Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 502260310, + "longitudeE7": -994764643 + }, + "endLocation": { + "latitudeE7": 506519732, + "longitudeE7": -999674340 + }, + "duration": { + "startTimestamp": "2013-06-18T19:45:55.425Z", + "endTimestamp": "2013-06-18T21:02:48.525Z" + }, + "distance": 86450, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 502262611, + "lngE7": -994764633 + }, { + "latE7": 506514396, + "lngE7": -999667663 + }], + "source": "BACKFILLED", + "distanceMeters": 79326.78522666969, + "travelMode": "DRIVE", + "confidence": 0.9914256879420451 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 506519732, + "longitudeE7": -999674340 + }, + "endLocation": { + "latitudeE7": 506519732, + "longitudeE7": -999674340 + }, + "duration": { + "startTimestamp": "2013-06-18T21:33:40.351Z", + "endTimestamp": "2013-06-18T21:56:07.656Z" + }, + "distance": 814, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 507048858, + "longitudeE7": -998095471, + "placeId": "ChIJoZf9HkAa5lIRsyv69FkkXhc", + "address": "Division No. 17, Unorganized, Manitoba R0J 2H0, Canada", + "name": "Whirlpool Lake Campground", + "locationConfidence": 100.0 + }, + "duration": { + "startTimestamp": "2013-06-18T22:02:16Z", + "endTimestamp": "2013-06-18T22:17:51Z" + }, + "placeConfidence": "USER_CONFIRMED", + "visitConfidence": 100, + "otherCandidateLocations": [{ + "latitudeE7": 506539205, + "longitudeE7": -999680676, + "placeId": "ChIJB3dMLW8U5lIRDSslhaLfHFQ", + "address": "28 Mooswa Dr, Onanole, MB R0J 1N0, Canada", + "name": "Mooswa Resort", + "locationConfidence": 81.16768 + }, { + "latitudeE7": 506539110, + "longitudeE7": -999678610, + "placeId": "ChIJ7R-wLm8U5lIR5QKIZC4V8wM", + "locationConfidence": 18.83232 + }], + "editConfirmationStatus": "CONFIRMED", + "locationConfidence": 100, + "placeVisitType": "SINGLE_PLACE", + "locationAssertionType": "WITHIN_OR_AT", + "lastEditedTimestamp": "2018-06-06T23:33:39.231Z", + "placeVisitImportance": "MAIN", + "editActionMetadata": { + "editHistory": { + "editEvent": [{ + "editOperation": ["MODIFY_LOCATION"], + "uiConfiguration": { + "uiPlaceVisitConfiguration": "YES_NO_OTHER_PLACE_VISIT" + } + }] + } + } + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 506526572, + "longitudeE7": -999654092 + }, + "endLocation": { + "latitudeE7": 506519732, + "longitudeE7": -999674340 + }, + "duration": { + "startTimestamp": "2013-06-18T22:17:51Z", + "endTimestamp": "2013-06-19T03:37:25Z" + }, + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "simplifiedRawPath": { + "points": [{ + "latE7": 507049524, + "lngE7": -998097739, + "accuracyMeters": 5, + "timestamp": "2013-06-18T23:57:14.050Z" + }], + "source": "BACKFILLED", + "distanceMeters": 24986.785899568124 + } + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 507048858, + "longitudeE7": -998095471, + "placeId": "ChIJoZf9HkAa5lIRsyv69FkkXhc", + "address": "Division No. 17, Unorganized, Manitoba R0J 2H0, Canada", + "name": "Whirlpool Lake Campground", + "locationConfidence": 100.0 + }, + "duration": { + "startTimestamp": "2013-06-19T03:37:25Z", + "endTimestamp": "2013-06-19T05:10:11Z" + }, + "placeConfidence": "USER_CONFIRMED", + "visitConfidence": 100, + "otherCandidateLocations": [{ + "latitudeE7": 506539205, + "longitudeE7": -999680676, + "placeId": "ChIJB3dMLW8U5lIRDSslhaLfHFQ", + "address": "28 Mooswa Dr, Onanole, MB R0J 1N0, Canada", + "name": "Mooswa Resort", + "locationConfidence": 89.33212 + }, { + "latitudeE7": 506539110, + "longitudeE7": -999678610, + "placeId": "ChIJ7R-wLm8U5lIR5QKIZC4V8wM", + "locationConfidence": 10.667878 + }], + "editConfirmationStatus": "CONFIRMED", + "locationConfidence": 100, + "placeVisitType": "SINGLE_PLACE", + "locationAssertionType": "WITHIN_OR_AT", + "lastEditedTimestamp": "2018-06-06T23:33:57.899Z", + "placeVisitImportance": "MAIN", + "editActionMetadata": { + "editHistory": { + "editEvent": [{ + "editOperation": ["MODIFY_LOCATION"], + "uiConfiguration": { + "uiPlaceVisitConfiguration": "YES_NO_OTHER_PLACE_VISIT" + } + }] + } + } + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-19T15:11:54.086Z", + "endTimestamp": "2013-06-19T15:34:51.578Z" + }, + "distance": 402, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 506539205, + "longitudeE7": -999680676, + "placeId": "ChIJB3dMLW8U5lIRDSslhaLfHFQ", + "address": "Mooswa Dr, Onanole, Manitoba R0J 1N0, Canada", + "name": "Mooswa Resort", + "locationConfidence": 89.21174 + }, + "duration": { + "startTimestamp": "2013-06-19T15:40:18.571Z", + "endTimestamp": "2013-06-19T17:18:12.739Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 506522420, + "centerLngE7": -999666180, + "visitConfidence": 46, + "otherCandidateLocations": [{ + "latitudeE7": 506539110, + "longitudeE7": -999678610, + "placeId": "ChIJ7R-wLm8U5lIR5QKIZC4V8wM", + "locationConfidence": 10.788263 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 79, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 506519732, + "longitudeE7": -999674340 + }, + "endLocation": { + "latitudeE7": 507724983, + "longitudeE7": -1012810195 + }, + "duration": { + "startTimestamp": "2013-06-19T17:42:44.305Z", + "endTimestamp": "2013-06-19T19:22:11.715Z" + }, + "distance": 116828, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 506514396, + "lngE7": -999667663 + }, { + "latE7": 507722549, + "lngE7": -1012811584 + }], + "source": "BACKFILLED", + "distanceMeters": 121109.6753402924, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 507714829, + "longitudeE7": -1013691376, + "placeId": "ChIJi_3Bnrup5lIRHZhukh23PTc", + "address": "MB-16, Manitoba, Canada", + "name": "The Russell Inn", + "locationConfidence": 51.95164 + }, + "duration": { + "startTimestamp": "2013-06-19T19:24:35.698Z", + "endTimestamp": "2013-06-19T19:47:03.824Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 507724824, + "centerLngE7": -1012809159, + "visitConfidence": 76, + "otherCandidateLocations": [{ + "latitudeE7": 507723587, + "longitudeE7": -1012809784, + "placeId": "ChIJ9bPN4r2p5lIRMde-Jhp37rs", + "address": "MB-16, Russell, MB R0J 1W0, Canada", + "name": "Esso", + "locationConfidence": 24.61134 + }, { + "latitudeE7": 507725315, + "longitudeE7": -1012810338, + "placeId": "ChIJQ3aimrup5lIREyeHMY3stk4", + "address": "Hwy#16, Russell, MB R0J 1W0, Canada", + "name": "Tim Hortons", + "locationConfidence": 21.687075 + }, { + "latitudeE7": 507731519, + "longitudeE7": -1012801079, + "placeId": "ChIJeSlFH7yp5lIR4qeIgYIusaI", + "address": "331 Centennial Crescent, Russell, MB R0J 1W0, Canada", + "name": "Russell Alliance Church", + "locationConfidence": 0.60696167 + }, { + "latitudeE7": 507741070, + "longitudeE7": -1012806670, + "placeId": "ChIJNYui47up5lIR0bVwu4D2nrw", + "name": "Cook Key Locksmithing", + "locationConfidence": 0.46371287 + }, { + "latitudeE7": 507721181, + "longitudeE7": -1012845307, + "placeId": "ChIJhzeap8ap5lIRilnhZhyUpec", + "address": "MB-16, Russell, MB R0J 1W0, Canada", + "name": "Jolly Lodger Motel", + "locationConfidence": 0.3039326 + }, { + "latitudeE7": 507731668, + "longitudeE7": -1012772138, + "placeId": "ChIJmYWywsip5lIRcYDXvprBWuw", + "address": "427 Alexandria Ave, Russell, MB R0J 1W0, Canada", + "name": "Russell Health Centre", + "locationConfidence": 0.2565745 + }, { + "latitudeE7": 507732143, + "longitudeE7": -1012850620, + "placeId": "ChIJWR5Fzb2p5lIRYnTu3_3shXU", + "address": "402 Memorial Ave, Russell, MB R0J 1W0, Canada", + "name": "Margarete\u0027s Massage Therapy", + "locationConfidence": 0.11876172 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 49, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-06-19T19:51:09.937Z", + "endTimestamp": "2013-06-19T20:33:38.911Z" + }, + "distance": 60585, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 507722702, + "lngE7": -1012812347 + }, { + "latE7": 509747467, + "lngE7": -1020830535 + }], + "source": "BACKFILLED", + "distanceMeters": 63700.216398229095, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 509747411, + "longitudeE7": -1020830635 + }, + "endLocation": { + "latitudeE7": 517943876, + "longitudeE7": -1046862138 + }, + "duration": { + "startTimestamp": "2013-06-19T20:41:34.505Z", + "endTimestamp": "2013-06-19T22:52:34.023Z" + }, + "distance": 210758, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 509747467, + "lngE7": -1020830535 + }, { + "latE7": 517943611, + "lngE7": -1046862106 + }], + "source": "BACKFILLED", + "distanceMeters": 217985.51142265328, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }] +} \ No newline at end of file diff --git a/reference/googletakeout/2013/2013_MAY.json b/reference/googletakeout/2013/2013_MAY.json new file mode 100644 index 000000000..618a78f78 --- /dev/null +++ b/reference/googletakeout/2013/2013_MAY.json @@ -0,0 +1,8385 @@ +{ + "timelineObjects": [{ + "placeVisit": { + "location": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 92.20695 + }, + "duration": { + "startTimestamp": "2013-05-09T01:24:28.883Z", + "endTimestamp": "2013-05-09T16:55:16.119Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374340997, + "centerLngE7": -1221390791, + "visitConfidence": 64, + "otherCandidateLocations": [{ + "latitudeE7": 374858048, + "longitudeE7": -1221480233, + "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 3.8165872 + }, { + "latitudeE7": 374945295, + "longitudeE7": -1220734968, + "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4", + "address": "2 Marshlands Rd, Fremont, CA 94555, USA", + "name": "Don Edwards San Francisco Bay National Wildlife Refuge", + "locationConfidence": 2.2292604 + }, { + "latitudeE7": 374841127, + "longitudeE7": -1221482444, + "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.6952479 + }, { + "latitudeE7": 374841002, + "longitudeE7": -1221482519, + "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs", + "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA", + "name": "Alan K Newman DDS PC", + "locationConfidence": 0.023095831 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q", + "locationConfidence": 0.016687157 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4AR42t2K4tvt5k", + "locationConfidence": 0.012176437 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "simplifiedRawPath": { + "points": [{ + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T02:22:15.145Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T02:24:15.178Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T02:25:15.195Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T02:26:15.339Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T02:29:15.268Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T02:30:16.646Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T13:20:26.474Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T14:41:03.527Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T14:44:03.588Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T14:45:03.600Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T14:46:03.602Z" + }, { + "latE7": 374335782, + "lngE7": -1221388493, + "accuracyMeters": 33, + "timestamp": "2013-05-09T14:53:34.049Z" + }, { + "latE7": 374425714, + "lngE7": -1221594760, + "accuracyMeters": 56, + "timestamp": "2013-05-09T15:58:16.388Z" + }, { + "latE7": 374425714, + "lngE7": -1221594760, + "accuracyMeters": 56, + "timestamp": "2013-05-09T15:59:18.009Z" + }, { + "latE7": 374425714, + "lngE7": -1221594760, + "accuracyMeters": 56, + "timestamp": "2013-05-09T16:00:20.435Z" + }, { + "latE7": 374538941, + "lngE7": -1221513119, + "accuracyMeters": 10, + "timestamp": "2013-05-09T16:03:57.315Z" + }, { + "latE7": 374591987, + "lngE7": -1221565460, + "accuracyMeters": 10, + "timestamp": "2013-05-09T16:06:58.071Z" + }, { + "latE7": 374618052, + "lngE7": -1221555443, + "accuracyMeters": 10, + "timestamp": "2013-05-09T16:07:58.086Z" + }, { + "latE7": 374626605, + "lngE7": -1221517364, + "accuracyMeters": 10, + "timestamp": "2013-05-09T16:09:58.228Z" + }, { + "latE7": 374833578, + "lngE7": -1221491409, + "accuracyMeters": 15, + "timestamp": "2013-05-09T16:25:11.045Z" + }, { + "latE7": 374832433, + "lngE7": -1221484243, + "accuracyMeters": 5, + "timestamp": "2013-05-09T16:26:20.027Z" + }, { + "latE7": 374851986, + "lngE7": -1221493424, + "accuracyMeters": 20, + "timestamp": "2013-05-09T16:27:31.017Z" + }, { + "latE7": 374857968, + "lngE7": -1221480905, + "accuracyMeters": 25, + "timestamp": "2013-05-09T16:28:30.915Z" + }], + "source": "BACKFILLED", + "distanceMeters": 7668.160797623759 + }, + "locationConfidence": 82, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-09T17:41:45.303Z", + "endTimestamp": "2013-05-09T18:29:14.734Z" + }, + "distance": 346, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-09T18:33:12.528Z", + "endTimestamp": "2013-05-09T18:34:15.144Z" + }, + "distance": 151, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374859695, + "lngE7": -1221462936 + }, { + "latE7": 374847488, + "lngE7": -1221476287 + }], + "source": "BACKFILLED", + "distanceMeters": 244.55963437597566, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 84.588234 + }, + "duration": { + "startTimestamp": "2013-05-09T18:34:15.144Z", + "endTimestamp": "2013-05-09T20:18:15.862Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 374848581, + "centerLngE7": -1221473888, + "visitConfidence": 77, + "otherCandidateLocations": [{ + "latitudeE7": 374841127, + "longitudeE7": -1221482444, + "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 6.59171 + }, { + "latitudeE7": 374858048, + "longitudeE7": -1221480233, + "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 5.947295 + }, { + "latitudeE7": 374945295, + "longitudeE7": -1220734968, + "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4", + "address": "2 Marshlands Rd, Fremont, CA 94555, USA", + "name": "Don Edwards San Francisco Bay National Wildlife Refuge", + "locationConfidence": 2.8023634 + }, { + "latitudeE7": 374841002, + "longitudeE7": -1221482519, + "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs", + "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA", + "name": "Alan K Newman DDS PC", + "locationConfidence": 0.045232322 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q", + "locationConfidence": 0.01384938 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4AR42t2K4tvt5k", + "locationConfidence": 0.011312664 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 76, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-09T20:18:15.862Z", + "endTimestamp": "2013-05-09T20:33:47.164Z" + }, + "distance": 3939, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374859313, + "lngE7": -1221480331 + }, { + "latE7": 374859619, + "lngE7": -1221504516 + }, { + "latE7": 374813537, + "lngE7": -1221506423 + }, { + "latE7": 374654426, + "lngE7": -1221572189 + }, { + "latE7": 374549255, + "lngE7": -1221645355 + }], + "source": "BACKFILLED", + "distanceMeters": 8472.911890096475, + "travelMode": "WALK", + "confidence": 0.9839425418903871 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374861183, + "lngE7": -1221503067, + "accuracyMeters": 15, + "timestamp": "2013-05-09T20:19:16.344Z" + }, { + "latE7": 374813461, + "lngE7": -1221505508, + "accuracyMeters": 10, + "timestamp": "2013-05-09T20:22:17.477Z" + }, { + "latE7": 374653854, + "lngE7": -1221569901, + "accuracyMeters": 30, + "timestamp": "2013-05-09T20:28:41.671Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-09T20:33:47.164Z", + "endTimestamp": "2013-05-09T20:46:16.121Z" + }, + "distance": 1908, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374549255, + "lngE7": -1221645355 + }, { + "latE7": 374422569, + "lngE7": -1221527786 + }], + "source": "BACKFILLED", + "distanceMeters": 2127.2425294508007, + "travelMode": "WALK", + "confidence": 0.2838991326843637 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-09T20:46:16.121Z", + "endTimestamp": "2013-05-09T20:58:54.448Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374422569, + "lngE7": -1221527786 + }, { + "latE7": 374403572, + "lngE7": -1221497497 + }, { + "latE7": 374388122, + "lngE7": -1221504287 + }, { + "latE7": 374370079, + "lngE7": -1221475601 + }, { + "latE7": 374335670, + "lngE7": -1221388702 + }], + "source": "BACKFILLED", + "distanceMeters": 1565.6315895262032, + "travelMode": "WALK", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374403954, + "lngE7": -1221497726, + "accuracyMeters": 10, + "timestamp": "2013-05-09T20:47:16.179Z" + }, { + "latE7": 374389000, + "lngE7": -1221503906, + "accuracyMeters": 10, + "timestamp": "2013-05-09T20:48:16.225Z" + }, { + "latE7": 374370308, + "lngE7": -1221475372, + "accuracyMeters": 15, + "timestamp": "2013-05-09T20:49:16.558Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 52.954517 + }, + "duration": { + "startTimestamp": "2013-05-09T20:58:54.448Z", + "endTimestamp": "2013-05-10T22:25:28.248Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374338641, + "centerLngE7": -1221390806, + "visitConfidence": 43, + "otherCandidateLocations": [{ + "latitudeE7": 374329110, + "longitudeE7": -1221400640, + "placeId": "ChIJAWnfsPy6j4ARNiWkbW9P6hc", + "address": "305 N California Ave, Palo Alto, CA 94301, USA", + "name": "First Baptist Church of Palo Alto", + "locationConfidence": 8.764264 + }, { + "latitudeE7": 374262553, + "longitudeE7": -1221480252, + "placeId": "ChIJLdTor_y6j4ARngczDDAaRdY", + "address": "2100 El Camino Real suite c, Palo Alto, CA 94301, USA", + "name": "New Mozart School of Music", + "locationConfidence": 5.52371 + }, { + "latitudeE7": 374336640, + "longitudeE7": -1221385050, + "placeId": "ChIJl54_7fy6j4ARg-TlDg6t-XE", + "address": "2205 Waverley St, Palo Alto, CA 94301, USA", + "name": "Alameda Investments Inc", + "locationConfidence": 4.2271852 + }, { + "latitudeE7": 374328658, + "longitudeE7": -1221400533, + "placeId": "ChIJLdTor_y6j4AR74_UFxwG0MA", + "address": "4546, Mailing Address Only, 335 El Camino Real #B10, Los Altos, CA 94022, USA", + "name": "Peninsula Peace \u0026 Justice Center", + "locationConfidence": 3.9824913 + }, { + "latitudeE7": 374331995, + "longitudeE7": -1221400810, + "placeId": "ChIJpQneyfy6j4ARUIAtA2303XA", + "address": "311 N California Ave, Palo Alto, CA 94301, USA", + "name": "Palo Alto Comm Child Care Pccc", + "locationConfidence": 3.51667 + }, { + "latitudeE7": 374328919, + "longitudeE7": -1221400171, + "placeId": "ChIJUcPYtvy6j4AREmYzE-4_3Hs", + "address": "305 N California Ave, Palo Alto, CA 94301, USA", + "name": "Macrobiotic Dinners", + "locationConfidence": 2.6978254 + }, { + "latitudeE7": 374330635, + "longitudeE7": -1221391385, + "placeId": "ChIJgTsLvvy6j4ARapij0GvpR1M", + "name": "Ame Coaching", + "locationConfidence": 1.6607062 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.5665251 + }, { + "latitudeE7": 374354450, + "longitudeE7": -1221406150, + "placeId": "ChIJT5M-teK6j4AR1d--W53wjzc", + "locationConfidence": 1.5292206 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 50, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374326085, + "longitudeE7": -1221391044 + }, + "endLocation": { + "latitudeE7": 374326085, + "longitudeE7": -1221391044 + }, + "duration": { + "startTimestamp": "2013-05-10T22:55:36.464Z", + "endTimestamp": "2013-05-10T23:01:52.925Z" + }, + "distance": 164, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-10T23:01:52.925Z", + "endTimestamp": "2013-05-10T23:19:44.431Z" + }, + "distance": 1820, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-10T23:19:44.431Z", + "endTimestamp": "2013-05-10T23:22:45.332Z" + }, + "distance": 220, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374225158, + "lngE7": -1221565933 + }, { + "latE7": 374211997, + "lngE7": -1221544647 + }], + "source": "BACKFILLED", + "distanceMeters": 320.1971935753868, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-10T23:22:45.332Z", + "endTimestamp": "2013-05-11T00:02:46.884Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374211692, + "lngE7": -1221544876 + }, { + "latE7": 374137344, + "lngE7": -1221413116 + }, { + "latE7": 374163475, + "lngE7": -1221370468 + }, { + "latE7": 374335899, + "lngE7": -1221388397 + }], + "source": "BACKFILLED", + "distanceMeters": 3130.8107682597683, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374136276, + "lngE7": -1221411057, + "accuracyMeters": 10, + "timestamp": "2013-05-10T23:34:46.127Z" + }, { + "latE7": 374163475, + "lngE7": -1221370468, + "accuracyMeters": 5, + "timestamp": "2013-05-10T23:38:45.971Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 53.15693 + }, + "duration": { + "startTimestamp": "2013-05-11T00:02:46.884Z", + "endTimestamp": "2013-05-11T16:49:43.180Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374336437, + "centerLngE7": -1221390489, + "visitConfidence": 36, + "otherCandidateLocations": [{ + "latitudeE7": 374329110, + "longitudeE7": -1221400640, + "placeId": "ChIJAWnfsPy6j4ARNiWkbW9P6hc", + "address": "305 N California Ave, Palo Alto, CA 94301, USA", + "name": "First Baptist Church of Palo Alto", + "locationConfidence": 9.807049 + }, { + "latitudeE7": 374262553, + "longitudeE7": -1221480252, + "placeId": "ChIJLdTor_y6j4ARngczDDAaRdY", + "address": "2100 El Camino Real suite c, Palo Alto, CA 94301, USA", + "name": "New Mozart School of Music", + "locationConfidence": 6.189419 + }, { + "latitudeE7": 374328658, + "longitudeE7": -1221400533, + "placeId": "ChIJLdTor_y6j4AR74_UFxwG0MA", + "address": "4546, Mailing Address Only, 335 El Camino Real #B10, Los Altos, CA 94022, USA", + "name": "Peninsula Peace \u0026 Justice Center", + "locationConfidence": 4.467295 + }, { + "latitudeE7": 374336640, + "longitudeE7": -1221385050, + "placeId": "ChIJl54_7fy6j4ARg-TlDg6t-XE", + "address": "2205 Waverley St, Palo Alto, CA 94301, USA", + "name": "Alameda Investments Inc", + "locationConfidence": 4.138909 + }, { + "latitudeE7": 374331995, + "longitudeE7": -1221400810, + "placeId": "ChIJpQneyfy6j4ARUIAtA2303XA", + "address": "311 N California Ave, Palo Alto, CA 94301, USA", + "name": "Palo Alto Comm Child Care Pccc", + "locationConfidence": 3.4875994 + }, { + "latitudeE7": 374328919, + "longitudeE7": -1221400171, + "placeId": "ChIJUcPYtvy6j4AREmYzE-4_3Hs", + "address": "305 N California Ave, Palo Alto, CA 94301, USA", + "name": "Macrobiotic Dinners", + "locationConfidence": 2.7466137 + }, { + "latitudeE7": 374330635, + "longitudeE7": -1221391385, + "placeId": "ChIJgTsLvvy6j4ARapij0GvpR1M", + "name": "Ame Coaching", + "locationConfidence": 1.5241222 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.5032207 + }, { + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.4474936 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 50, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374257117, + "longitudeE7": -1221474391 + }, + "endLocation": { + "latitudeE7": 374253930, + "longitudeE7": -1221474074 + }, + "duration": { + "startTimestamp": "2013-05-11T16:57:13.361Z", + "endTimestamp": "2013-05-11T16:58:22.182Z" + }, + "distance": 157, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374258384, + "lngE7": -1221472625 + }, { + "latE7": 374253730, + "lngE7": -1221474227 + }], + "source": "BACKFILLED", + "distanceMeters": 118.24258724631441, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374257117, + "longitudeE7": -1221474391 + }, + "endLocation": { + "latitudeE7": 374231968, + "longitudeE7": -1221494844 + }, + "duration": { + "startTimestamp": "2013-05-11T16:58:22.182Z", + "endTimestamp": "2013-05-11T17:03:36.257Z" + }, + "distance": 1434, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374258689, + "lngE7": -1221472167 + }, { + "latE7": 374230918, + "lngE7": -1221491317 + }], + "source": "BACKFILLED", + "distanceMeters": 601.7848407199617, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374231968, + "longitudeE7": -1221494844 + }, + "endLocation": { + "latitudeE7": 374487700, + "longitudeE7": -1221761200 + }, + "duration": { + "startTimestamp": "2013-05-11T17:03:36.257Z", + "endTimestamp": "2013-05-11T17:15:08.247Z" + }, + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "simplifiedRawPath": { + "points": [{ + "latE7": 374382526, + "lngE7": -1221580149, + "accuracyMeters": 37, + "timestamp": "2013-05-11T17:12:03.361Z" + }], + "source": "BACKFILLED", + "distanceMeters": 3816.313320948182 + } + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374497721, + "longitudeE7": -1221765152, + "placeId": "ChIJF57KY7Okj4ARTbdAyeyJbbw", + "address": "405 El Camino Real, Menlo Park, California 94025, United States", + "name": "The UPS Store", + "locationConfidence": 7.9764786 + }, + "duration": { + "startTimestamp": "2013-05-11T17:15:08.247Z", + "endTimestamp": "2013-05-11T17:47:12.159Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374487700, + "centerLngE7": -1221761200, + "visitConfidence": 69, + "otherCandidateLocations": [{ + "latitudeE7": 374505321, + "longitudeE7": -1221791572, + "placeId": "ChIJ33JzmLOkj4ARisZhlgHYIYE", + "address": "525 El Camino Real, Menlo Park, CA 94025, USA", + "name": "Safeway", + "locationConfidence": 7.236802 + }, { + "latitudeE7": 374485005, + "longitudeE7": -1221747574, + "placeId": "ChIJGyJrzbSkj4ARACUm-OP1KxY", + "address": "241 El Camino Real #5236, Menlo Park, CA 94025, USA", + "name": "The Oasis Beer Garden", + "locationConfidence": 6.173527 + }, { + "latitudeE7": 374499305, + "longitudeE7": -1221767784, + "placeId": "ChIJd83SZLOkj4ARHyhh95ctd0k", + "address": "433 El Camino Real, Menlo Park, CA 94025, USA", + "name": "Menlo Velo Bicycles", + "locationConfidence": 5.1893077 + }, { + "latitudeE7": 374489724, + "longitudeE7": -1221753770, + "placeId": "ChIJBxU1uLSkj4ARs0sCns-2YbI", + "address": "301 El Camino Real, Menlo Park, CA 94025, USA", + "name": "Planet Auto Inc", + "locationConfidence": 4.1715937 + }, { + "latitudeE7": 374519700, + "longitudeE7": -1221769357, + "placeId": "ChIJDWcc4LKkj4ARpSwFeCCXidg", + "address": "701 Laurel St, Menlo Park, CA 94025, USA", + "name": "Burgess Park", + "locationConfidence": 3.8282804 + }, { + "latitudeE7": 374487806, + "longitudeE7": -1221750578, + "placeId": "ChIJQRiTybSkj4ARLMaennZMnF0", + "address": "275 El Camino Real, Menlo Park, CA 94025, USA", + "name": "76", + "locationConfidence": 3.6830883 + }, { + "latitudeE7": 374495670, + "longitudeE7": -1221781730, + "placeId": "ChIJufxUv7Okj4ARlVIu8V2VYt4", + "address": "515 El Camino Real #100, Menlo Park, CA 94025, USA", + "name": "Peet\u0027s Coffee", + "locationConfidence": 3.6277 + }, { + "latitudeE7": 374496540, + "longitudeE7": -1221782950, + "placeId": "ChIJufxUv7Okj4AR9_5v2USTvb0", + "address": "515 El Camino Real Suite 110, Menlo Park, CA 94025, USA", + "name": "Rubio\u0027s Coastal Grill", + "locationConfidence": 2.8963544 + }, { + "latitudeE7": 374501183, + "longitudeE7": -1221770443, + "placeId": "ChIJtwXZdbOkj4ARJrUVcFBi0H4", + "address": "495 El Camino Real, Menlo Park, CA 94025, USA", + "name": "Shell", + "locationConfidence": 2.7770123 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 13, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374381907, + "longitudeE7": -1221582736 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 53.561028 + }, + "duration": { + "startTimestamp": "2013-05-11T17:53:28.791Z", + "endTimestamp": "2013-05-11T17:58:51.797Z" + }, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374381942, + "lngE7": -1221582717 + }, { + "latE7": 374334869, + "lngE7": -1221388702 + }], + "source": "BACKFILLED", + "distanceMeters": 2180.8163145972144, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 53.561028 + }, + "duration": { + "startTimestamp": "2013-05-11T17:58:51.797Z", + "endTimestamp": "2013-05-12T09:03:46.323Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374337332, + "centerLngE7": -1221390165, + "visitConfidence": 36, + "otherCandidateLocations": [{ + "latitudeE7": 374329110, + "longitudeE7": -1221400640, + "placeId": "ChIJAWnfsPy6j4ARNiWkbW9P6hc", + "address": "305 N California Ave, Palo Alto, CA 94301, USA", + "name": "First Baptist Church of Palo Alto", + "locationConfidence": 9.22152 + }, { + "latitudeE7": 374262553, + "longitudeE7": -1221480252, + "placeId": "ChIJLdTor_y6j4ARngczDDAaRdY", + "address": "2100 El Camino Real suite c, Palo Alto, CA 94301, USA", + "name": "New Mozart School of Music", + "locationConfidence": 5.8220625 + }, { + "latitudeE7": 374336640, + "longitudeE7": -1221385050, + "placeId": "ChIJl54_7fy6j4ARg-TlDg6t-XE", + "address": "2205 Waverley St, Palo Alto, CA 94301, USA", + "name": "Alameda Investments Inc", + "locationConfidence": 4.4577494 + }, { + "latitudeE7": 374328658, + "longitudeE7": -1221400533, + "placeId": "ChIJLdTor_y6j4AR74_UFxwG0MA", + "address": "4546, Mailing Address Only, 335 El Camino Real #B10, Los Altos, CA 94022, USA", + "name": "Peninsula Peace \u0026 Justice Center", + "locationConfidence": 4.200216 + }, { + "latitudeE7": 374331995, + "longitudeE7": -1221400810, + "placeId": "ChIJpQneyfy6j4ARUIAtA2303XA", + "address": "311 N California Ave, Palo Alto, CA 94301, USA", + "name": "Palo Alto Comm Child Care Pccc", + "locationConfidence": 3.4825382 + }, { + "latitudeE7": 374328919, + "longitudeE7": -1221400171, + "placeId": "ChIJUcPYtvy6j4AREmYzE-4_3Hs", + "address": "305 N California Ave, Palo Alto, CA 94301, USA", + "name": "Macrobiotic Dinners", + "locationConfidence": 2.7169678 + }, { + "latitudeE7": 374330635, + "longitudeE7": -1221391385, + "placeId": "ChIJgTsLvvy6j4ARapij0GvpR1M", + "name": "Ame Coaching", + "locationConfidence": 1.6239402 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.5385431 + }, { + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.4803555 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 50, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 53.561028 + }, + "endLocation": { + "latitudeE7": 374346707, + "longitudeE7": -1221387953 + }, + "duration": { + "startTimestamp": "2013-05-12T09:03:46.323Z", + "endTimestamp": "2013-05-12T13:52:53.712Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374326248, + "lngE7": -1221390914 + }, { + "latE7": 374348335, + "lngE7": -1221390609 + }], + "source": "BACKFILLED", + "distanceMeters": 322.9690021991538, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-12T13:52:53.712Z", + "endTimestamp": "2013-05-12T18:07:19.954Z" + }, + "distance": 4357, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 373984051, + "longitudeE7": -1219751567, + "placeId": "ChIJq7iF28bJj4ARdWUD6DQUr3I", + "address": "4701 Great America Parkway, Santa Clara, California 95054, United States", + "name": "California\u0027s Great America", + "locationConfidence": 22.252901 + }, + "duration": { + "startTimestamp": "2013-05-12T18:11:49.770Z", + "endTimestamp": "2013-05-12T18:25:32.988Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 373948200, + "centerLngE7": -1219747850, + "visitConfidence": 74, + "otherCandidateLocations": [{ + "latitudeE7": 373899455, + "longitudeE7": -1219740020, + "placeId": "ChIJZS4fLMLJj4ARRUt4ybRvZxk", + "address": "2700 Mission College Blvd, Santa Clara, CA 95054, USA", + "name": "Santa Clara Marriott", + "locationConfidence": 9.660756 + }, { + "latitudeE7": 373952047, + "longitudeE7": -1219744159, + "placeId": "ChIJU_RvzmbJj4AR7M69vplT82c", + "address": "4701 Great America Pkwy, Santa Clara, CA 95054, USA", + "name": "Whitewater Falls", + "locationConfidence": 9.165366 + }, { + "latitudeE7": 373935818, + "longitudeE7": -1219719714, + "placeId": "ChIJr4QAVsDJj4ARkTENSw4Oywg", + "address": "Mission College Blvd, Santa Clara, CA 95054, USA", + "name": "County Fair", + "locationConfidence": 5.2735786 + }, { + "latitudeE7": 373957386, + "longitudeE7": -1219718967, + "placeId": "ChIJVxExp8DJj4ARp1MKDNlJH7c", + "address": "4701 Great America Pkwy, Santa Clara, CA 95054, USA", + "name": "Boomerang Bay", + "locationConfidence": 4.52043 + }, { + "latitudeE7": 373958736, + "longitudeE7": -1219747521, + "placeId": "ChIJubgbscbJj4ARXWTpHol5FWY", + "address": "4701 Great America Pkwy, Santa Clara, CA 95054, USA", + "name": "Xtreme Skyflyer", + "locationConfidence": 4.398407 + }, { + "latitudeE7": 373836462, + "longitudeE7": -1219826432, + "placeId": "ChIJ0-40YsHJj4ARCP7vTZ8Wrvk", + "address": "3000 Tannery Way, Santa Clara, CA 95054, USA", + "name": "Palo Alto Networks Inc", + "locationConfidence": 4.199742 + }, { + "latitudeE7": 373955153, + "longitudeE7": -1219736776, + "placeId": "ChIJi00ZMsHJj4ARGdsP3za9NhM", + "locationConfidence": 3.9966197 + }, { + "latitudeE7": 373948533, + "longitudeE7": -1219721943, + "placeId": "ChIJDQuOmsDJj4ARGlVd8LNzcRU", + "address": "4701 Great America Pkwy, Santa Clara, CA 95054, USA", + "name": "Planet Snoopy", + "locationConfidence": 3.0080788 + }, { + "latitudeE7": 373973379, + "longitudeE7": -1219724860, + "placeId": "ChIJfXEcAMfJj4AR-BhNziCXycc", + "address": "4701 Great America Pkwy, Santa Clara, CA 95054, USA", + "name": "Orleans Place", + "locationConfidence": 2.9113894 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 25, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374007987, + "longitudeE7": -1219710494 + }, + "endLocation": { + "latitudeE7": 373956834, + "longitudeE7": -1219699640 + }, + "duration": { + "startTimestamp": "2013-05-12T18:27:56.655Z", + "endTimestamp": "2013-05-12T18:44:35.769Z" + }, + "distance": 4444, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374006462, + "lngE7": -1219708786 + }, { + "latE7": 374015197, + "lngE7": -1219681549 + }, { + "latE7": 373956909, + "lngE7": -1219699630 + }], + "source": "BACKFILLED", + "distanceMeters": 1993.7041370746258, + "travelMode": "WALK", + "confidence": 0.949118627322461 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374019470, + "lngE7": -1219675064, + "accuracyMeters": 40, + "timestamp": "2013-05-12T18:30:42.463Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 373956834, + "longitudeE7": -1219699640 + }, + "endLocation": { + "latitudeE7": 374276772, + "longitudeE7": -1221402018 + }, + "duration": { + "startTimestamp": "2013-05-12T18:44:35.769Z", + "endTimestamp": "2013-05-12T19:25:09.731Z" + }, + "distance": 12046, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 373956565, + "lngE7": -1219699630 + }, { + "latE7": 374276733, + "lngE7": -1221400909 + }], + "source": "BACKFILLED", + "distanceMeters": 21186.284091367557, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-13T14:37:41.462Z", + "endTimestamp": "2013-05-13T14:43:22.408Z" + }, + "distance": 717, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277534, + "lngE7": -1221401748 + }, { + "latE7": 374261627, + "lngE7": -1221486358 + }], + "source": "BACKFILLED", + "distanceMeters": 1274.8286209232695, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-13T14:43:22.408Z", + "endTimestamp": "2013-05-13T16:10:37.703Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374261322, + "lngE7": -1221486587 + }, { + "latE7": 374277305, + "lngE7": -1221402206 + }], + "source": "BACKFILLED", + "distanceMeters": 1116.4415282573361, + "travelMode": "WALK", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.85062 + }, + "duration": { + "startTimestamp": "2013-05-13T16:10:37.703Z", + "endTimestamp": "2013-05-14T14:43:03.783Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276379, + "centerLngE7": -1221402800, + "visitConfidence": 64, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.080436856 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.013714218 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0030492148 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0025922023 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.002079509 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0017562815 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0016301202 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.00157448 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0014901427 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.85062 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.83373 + }, + "duration": { + "startTimestamp": "2013-05-14T14:43:03.783Z", + "endTimestamp": "2013-05-14T14:53:40.149Z" + }, + "distance": 2879, + "confidence": "HIGH", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374217720, + "lngE7": -1221545944 + }], + "source": "BACKFILLED", + "distanceMeters": 4599.051857075013, + "travelMode": "DRIVE", + "confidence": 0.997433301422488 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374216614, + "lngE7": -1221547470, + "accuracyMeters": 10, + "timestamp": "2013-05-14T14:47:52.821Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.83373 + }, + "duration": { + "startTimestamp": "2013-05-14T14:53:40.149Z", + "endTimestamp": "2013-05-16T14:40:30.881Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276606, + "centerLngE7": -1221403046, + "visitConfidence": 64, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.08912129 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.015353769 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0035052963 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0027932709 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0022898293 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0019566782 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0017946616 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0017903497 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0016769229 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.83373 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.85088 + }, + "duration": { + "startTimestamp": "2013-05-16T14:40:30.881Z", + "endTimestamp": "2013-05-16T14:52:10.663Z" + }, + "distance": 3082, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374248504, + "lngE7": -1221452941 + }, { + "latE7": 374273948, + "lngE7": -1221412124 + }], + "source": "BACKFILLED", + "distanceMeters": 299.714338384798, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374248466, + "lngE7": -1221452942, + "accuracyMeters": 15, + "timestamp": "2013-05-16T14:43:34.453Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.85088 + }, + "duration": { + "startTimestamp": "2013-05-16T14:52:10.663Z", + "endTimestamp": "2013-05-17T14:38:11.095Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276432, + "centerLngE7": -1221402858, + "visitConfidence": 64, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.081854634 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.014562305 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0026563238 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0021550916 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.001858078 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.001688061 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0016730934 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0015719468 + }, { + "latitudeE7": 374273330, + "longitudeE7": -1221403950, + "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4", + "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA", + "name": "Accident Analysis Associates Inc", + "locationConfidence": 0.0013186962 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.840485 + }, + "duration": { + "startTimestamp": "2013-05-17T14:50:20.849Z", + "endTimestamp": "2013-05-17T23:57:22.894Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276378, + "centerLngE7": -1221402900, + "visitConfidence": 91, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.08417883 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.014862347 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0033403533 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0027020252 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0022007509 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0018951539 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0017227987 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0017164827 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0016092142 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.83145 + }, + "duration": { + "startTimestamp": "2013-05-18T00:28:49.065Z", + "endTimestamp": "2013-05-18T17:55:48.241Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276239, + "centerLngE7": -1221403019, + "visitConfidence": 97, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.09109288 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.016722625 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.002904554 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0024148065 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.002121007 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0019550966 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0018868037 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0018101264 + }, { + "latitudeE7": 374273330, + "longitudeE7": -1221403950, + "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4", + "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA", + "name": "Accident Analysis Associates Inc", + "locationConfidence": 0.0015629197 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-18T17:55:48.241Z", + "endTimestamp": "2013-05-18T18:06:55.048Z" + }, + "distance": 2832, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374344787, + "lngE7": -1221402816 + }, { + "latE7": 374193572, + "lngE7": -1221347427 + }], + "source": "BACKFILLED", + "distanceMeters": 1403.1133553496697, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374341507, + "lngE7": -1221404266, + "accuracyMeters": 44, + "timestamp": "2013-05-18T17:57:56.122Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-18T18:13:58.104Z", + "endTimestamp": "2013-05-18T18:16:59.197Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374193954, + "lngE7": -1221347122 + }, { + "latE7": 374274940, + "lngE7": -1221398162 + }], + "source": "BACKFILLED", + "distanceMeters": 1331.0211495930375, + "travelMode": "WALK", + "confidence": 0.2625832986615732 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.879036 + }, + "duration": { + "startTimestamp": "2013-05-18T18:16:59.197Z", + "endTimestamp": "2013-05-18T18:49:26.198Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276304, + "centerLngE7": -1221402731, + "visitConfidence": 78, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.055390038 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.00477415 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0041358145 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.002585689 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.002091494 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.001637253 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0015396782 + }, { + "latitudeE7": 374281042, + "longitudeE7": -1221413747, + "placeId": "ChIJfT0IOOW6j4ARF8U5xucxAUE", + "address": "150 Grant Ave F, Palo Alto, CA 94306, USA", + "name": "Loy D. Martin Furniture", + "locationConfidence": 0.0014463083 + }, { + "latitudeE7": 374273330, + "longitudeE7": -1221403950, + "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4", + "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA", + "name": "Accident Analysis Associates Inc", + "locationConfidence": 0.0013342035 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.879036 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.84637 + }, + "duration": { + "startTimestamp": "2013-05-18T18:49:26.198Z", + "endTimestamp": "2013-05-18T19:06:58.548Z" + }, + "distance": 4183, + "confidence": "HIGH", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374257926, + "lngE7": -1221497116 + }, { + "latE7": 374191398, + "lngE7": -1221602020 + }, { + "latE7": 374223213, + "lngE7": -1221508560 + }, { + "latE7": 374277420, + "lngE7": -1221401290 + }], + "source": "BACKFILLED", + "distanceMeters": 7349.591316594279, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374257927, + "lngE7": -1221497116, + "accuracyMeters": 29, + "timestamp": "2013-05-18T18:54:27.792Z" + }, { + "latE7": 374191208, + "lngE7": -1221602020, + "accuracyMeters": 26, + "timestamp": "2013-05-18T18:58:53.453Z" + }, { + "latE7": 374224434, + "lngE7": -1221511154, + "accuracyMeters": 87, + "timestamp": "2013-05-18T19:02:58.409Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.84637 + }, + "duration": { + "startTimestamp": "2013-05-18T19:06:58.548Z", + "endTimestamp": "2013-05-18T21:48:32.306Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276373, + "centerLngE7": -1221403018, + "visitConfidence": 83, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.090702996 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.0053182445 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0028292553 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0023263555 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0019881763 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0018308341 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0018181703 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0017077732 + }, { + "latitudeE7": 374273330, + "longitudeE7": -1221403950, + "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4", + "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA", + "name": "Accident Analysis Associates Inc", + "locationConfidence": 0.0014124921 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-18T21:48:32.306Z", + "endTimestamp": "2013-05-18T21:54:51.137Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374265632, + "lngE7": -1221431884 + }, { + "latE7": 374191436, + "lngE7": -1221601104 + }], + "source": "BACKFILLED", + "distanceMeters": 2913.412686076353, + "travelMode": "DRIVE", + "confidence": 0.9417166772901809 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374266815, + "lngE7": -1221434174, + "accuracyMeters": 52, + "timestamp": "2013-05-18T21:50:10.405Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-18T22:05:51.318Z", + "endTimestamp": "2013-05-18T22:17:48.551Z" + }, + "distance": 5479, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374191436, + "lngE7": -1221601104 + }, { + "latE7": 374253540, + "lngE7": -1221512374 + }, { + "latE7": 374017601, + "lngE7": -1221123733 + }], + "source": "BACKFILLED", + "distanceMeters": 6662.56685650875, + "travelMode": "DRIVE", + "confidence": 0.8558625096376219 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374255180, + "lngE7": -1221515427, + "accuracyMeters": 57, + "timestamp": "2013-05-18T22:07:48.829Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374017565, + "longitudeE7": -1221118174, + "placeId": "ChIJKfoIrJ-wj4ARefOkpOnvEYc", + "address": "645 San Antonio Road, Mountain View, California 94040, United States", + "name": "Safeway", + "locationConfidence": 46.756645, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-05-18T22:17:48.551Z", + "endTimestamp": "2013-05-18T22:40:46.472Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374017208, + "centerLngE7": -1221120569, + "visitConfidence": 77, + "otherCandidateLocations": [{ + "latitudeE7": 373999768, + "longitudeE7": -1221097812, + "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY", + "address": "2550 W El Camino Real, Mountain View, CA 94040, USA", + "name": "San Antonio Center", + "locationConfidence": 7.8241906 + }, { + "latitudeE7": 374020870, + "longitudeE7": -1221107610, + "placeId": "ChIJNQXj95iwj4ARmJbKFsVOjYM", + "address": "590 Showers Dr, Mountain View, CA 94040, USA", + "name": "Trader Joe\u0027s", + "locationConfidence": 6.7132154 + }, { + "latitudeE7": 374009260, + "longitudeE7": -1221121840, + "placeId": "ChIJyS7o4Zuwj4ARon29W1GsXJo", + "address": "2580 W El Camino Real, Mountain View, CA 94040, USA", + "name": "The Counter Mountain View", + "locationConfidence": 4.0742373 + }, { + "latitudeE7": 374009978, + "longitudeE7": -1221095964, + "placeId": "ChIJryH6Apmwj4ARx08eJ5hAaGQ", + "address": "600 Showers Dr, Mountain View, CA 94040, USA", + "name": "Walmart", + "locationConfidence": 3.4990535 + }, { + "latitudeE7": 374027620, + "longitudeE7": -1221122274, + "placeId": "ChIJ-0gSHZywj4ARQGh008-HoLA", + "address": "565 San Antonio Rd #26, Mountain View, CA 94040, USA", + "name": "Veggie Grill", + "locationConfidence": 3.1027398 + }, { + "latitudeE7": 374017924, + "longitudeE7": -1221120685, + "placeId": "ChIJVykNVJmwj4ARnKMt_r3o31Q", + "address": "645 San Antonio Rd, Mountain View, CA 94039, USA", + "name": "U.S. Bank Branch", + "locationConfidence": 2.4543185, + "isCurrentLocation": true + }, { + "latitudeE7": 374018014, + "longitudeE7": -1221117757, + "placeId": "ChIJKfoIrJ-wj4ARrfQpjCBFyaI", + "address": "645 San Antonio Rd, Mountain View, CA 94040, USA", + "name": "Safeway Pharmacy", + "locationConfidence": 2.067627, + "isCurrentLocation": true + }, { + "latitudeE7": 374016175, + "longitudeE7": -1221129674, + "placeId": "ChIJEVHD9Zuwj4ARBKHe9fJMUIA", + "address": "685 San Antonio Rd Suite 19, Mountain View, CA 94040, USA", + "name": "Jared", + "locationConfidence": 1.8255533 + }, { + "latitudeE7": 374010476, + "longitudeE7": -1221109462, + "placeId": "ChIJ8ZTVZJmwj4ARQFv0RXspg3A", + "address": "2560 W El Camino Real, Mountain View, CA 94040, USA", + "name": "Chili\u0027s Grill \u0026 Bar", + "locationConfidence": 1.5816091 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 45, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374017565, + "longitudeE7": -1221118174, + "placeId": "ChIJKfoIrJ-wj4ARefOkpOnvEYc", + "address": "645 San Antonio Road, Mountain View, California 94040, United States", + "name": "Safeway", + "locationConfidence": 46.756645, + "isCurrentLocation": true + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.86496 + }, + "duration": { + "startTimestamp": "2013-05-18T22:40:46.472Z", + "endTimestamp": "2013-05-18T22:51:20.577Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374019050, + "lngE7": -1221122589 + }, { + "latE7": 374280166, + "lngE7": -1221404495 + }], + "source": "BACKFILLED", + "distanceMeters": 4783.311741938092, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.86496 + }, + "duration": { + "startTimestamp": "2013-05-18T22:51:20.577Z", + "endTimestamp": "2013-05-20T14:41:29.356Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276328, + "centerLngE7": -1221402824, + "visitConfidence": 99, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.080255754 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.005050674 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.00265585 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0021593894 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0018887229 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0016929326 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0016919395 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0015878107 + }, { + "latitudeE7": 374273330, + "longitudeE7": -1221403950, + "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4", + "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA", + "name": "Accident Analysis Associates Inc", + "locationConfidence": 0.0013619774 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-20T14:41:29.356Z", + "endTimestamp": "2013-05-20T15:06:16.500Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374278182, + "lngE7": -1221402435 + }, { + "latE7": 374260330, + "lngE7": -1221436309 + }, { + "latE7": 374213104, + "lngE7": -1221545715 + }, { + "latE7": 374336547, + "lngE7": -1221557922 + }, { + "latE7": 374439163, + "lngE7": -1221647338 + }, { + "latE7": 374855461, + "lngE7": -1221495666 + }], + "source": "BACKFILLED", + "distanceMeters": 9665.730342837845, + "travelMode": "DRIVE", + "confidence": 0.997268575576259 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374259796, + "lngE7": -1221433945, + "accuracyMeters": 64, + "timestamp": "2013-05-20T14:42:33.458Z" + }, { + "latE7": 374215431, + "lngE7": -1221550140, + "accuracyMeters": 61, + "timestamp": "2013-05-20T14:46:26.148Z" + }, { + "latE7": 374337540, + "lngE7": -1221556396, + "accuracyMeters": 42, + "timestamp": "2013-05-20T14:51:38.554Z" + }, { + "latE7": 374440193, + "lngE7": -1221644211, + "accuracyMeters": 20, + "timestamp": "2013-05-20T14:54:37.371Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-20T15:06:16.500Z", + "endTimestamp": "2013-05-20T15:14:23.971Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374854354, + "lngE7": -1221496963 + }, { + "latE7": 374851760, + "lngE7": -1221495971 + }], + "source": "BACKFILLED", + "distanceMeters": 84.89175190604107, + "travelMode": "WALK", + "confidence": 0.5711708164602445 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 88.99889 + }, + "duration": { + "startTimestamp": "2013-05-20T15:14:23.971Z", + "endTimestamp": "2013-05-20T16:11:41.995Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 374854156, + "centerLngE7": -1221484227, + "visitConfidence": 64, + "otherCandidateLocations": [{ + "latitudeE7": 374858048, + "longitudeE7": -1221480233, + "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 6.850942 + }, { + "latitudeE7": 374841127, + "longitudeE7": -1221482444, + "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 2.3814566 + }, { + "latitudeE7": 374945295, + "longitudeE7": -1220734968, + "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4", + "address": "2 Marshlands Rd, Fremont, CA 94555, USA", + "name": "Don Edwards San Francisco Bay National Wildlife Refuge", + "locationConfidence": 1.7047024 + }, { + "latitudeE7": 374841002, + "longitudeE7": -1221482519, + "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs", + "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA", + "name": "Alan K Newman DDS PC", + "locationConfidence": 0.04788646 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q", + "locationConfidence": 0.008943192 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4AR42t2K4tvt5k", + "locationConfidence": 0.007179077 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "simplifiedRawPath": { + "points": [{ + "latE7": 374851330, + "lngE7": -1221496432, + "accuracyMeters": 61, + "timestamp": "2013-05-20T15:16:37.102Z" + }, { + "latE7": 374854101, + "lngE7": -1221481765, + "accuracyMeters": 25, + "timestamp": "2013-05-20T15:54:36.214Z" + }, { + "latE7": 374845643, + "lngE7": -1221481529, + "accuracyMeters": 54, + "timestamp": "2013-05-20T15:55:36.248Z" + }, { + "latE7": 374845643, + "lngE7": -1221481529, + "accuracyMeters": 54, + "timestamp": "2013-05-20T15:58:36.329Z" + }, { + "latE7": 374845643, + "lngE7": -1221481529, + "accuracyMeters": 54, + "timestamp": "2013-05-20T16:01:36.299Z" + }, { + "latE7": 374845643, + "lngE7": -1221481529, + "accuracyMeters": 54, + "timestamp": "2013-05-20T16:03:36.325Z" + }, { + "latE7": 374845643, + "lngE7": -1221481529, + "accuracyMeters": 54, + "timestamp": "2013-05-20T16:05:38.492Z" + }, { + "latE7": 374845643, + "lngE7": -1221481529, + "accuracyMeters": 54, + "timestamp": "2013-05-20T16:07:38.692Z" + }, { + "latE7": 374845643, + "lngE7": -1221481529, + "accuracyMeters": 54, + "timestamp": "2013-05-20T16:09:38.833Z" + }], + "source": "BACKFILLED", + "distanceMeters": 1583.0679042289785 + }, + "locationConfidence": 79, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 88.99889 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.82275 + }, + "duration": { + "startTimestamp": "2013-05-20T16:11:41.995Z", + "endTimestamp": "2013-05-20T16:30:45.206Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374840927, + "lngE7": -1221477890 + }, { + "latE7": 374856376, + "lngE7": -1221494293 + }, { + "latE7": 374447174, + "lngE7": -1221648635 + }, { + "latE7": 374277915, + "lngE7": -1221402282 + }], + "source": "BACKFILLED", + "distanceMeters": 9752.614896365683, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374854889, + "lngE7": -1221496353, + "accuracyMeters": 37, + "timestamp": "2013-05-20T16:11:41.995Z" + }, { + "latE7": 374448204, + "lngE7": -1221647644, + "accuracyMeters": 28, + "timestamp": "2013-05-20T16:25:01.007Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.82275 + }, + "duration": { + "startTimestamp": "2013-05-20T16:30:45.206Z", + "endTimestamp": "2013-05-20T23:34:50.283Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276517, + "centerLngE7": -1221403160, + "visitConfidence": 89, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.098387025 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.015490911 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0036423688 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0029345958 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0024107322 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0019800286 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0018812225 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0018567012 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.00173715 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.82275 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.83119 + }, + "duration": { + "startTimestamp": "2013-05-20T23:34:50.283Z", + "endTimestamp": "2013-05-21T00:06:37.463Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374276199, + "lngE7": -1221400909 + }, { + "latE7": 374256782, + "lngE7": -1221439208 + }, { + "latE7": 374386291, + "lngE7": -1221596832 + }, { + "latE7": 374208755, + "lngE7": -1221572036 + }, { + "latE7": 374215812, + "lngE7": -1221494598 + }, { + "latE7": 374283332, + "lngE7": -1221429824 + }, { + "latE7": 374277610, + "lngE7": -1221401901 + }], + "source": "BACKFILLED", + "distanceMeters": 6039.170238661459, + "travelMode": "DRIVE", + "confidence": 0.8897991584966768 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374256935, + "lngE7": -1221439514, + "accuracyMeters": 34, + "timestamp": "2013-05-20T23:38:00.716Z" + }, { + "latE7": 374382706, + "lngE7": -1221595078, + "accuracyMeters": 43, + "timestamp": "2013-05-20T23:49:15.215Z" + }, { + "latE7": 374211655, + "lngE7": -1221569824, + "accuracyMeters": 61, + "timestamp": "2013-05-20T23:56:09.352Z" + }, { + "latE7": 374216118, + "lngE7": -1221494370, + "accuracyMeters": 29, + "timestamp": "2013-05-21T00:00:42.538Z" + }, { + "latE7": 374283447, + "lngE7": -1221429749, + "accuracyMeters": 37, + "timestamp": "2013-05-21T00:04:37.469Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.83119 + }, + "duration": { + "startTimestamp": "2013-05-21T00:06:37.463Z", + "endTimestamp": "2013-05-21T14:39:27.896Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276219, + "centerLngE7": -1221403029, + "visitConfidence": 95, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.09159616 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.016957428 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.002926498 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.002438668 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0021492941 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0019839047 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0019051788 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0018341491 + }, { + "latitudeE7": 374273330, + "longitudeE7": -1221403950, + "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4", + "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA", + "name": "Accident Analysis Associates Inc", + "locationConfidence": 0.0015892342 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.83119 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.86282 + }, + "duration": { + "startTimestamp": "2013-05-21T14:39:27.896Z", + "endTimestamp": "2013-05-21T14:51:55.435Z" + }, + "distance": 3117, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374278144, + "lngE7": -1221402435 + }, { + "latE7": 374255256, + "lngE7": -1221440505 + }, { + "latE7": 374217720, + "lngE7": -1221545944 + }], + "source": "BACKFILLED", + "distanceMeters": 4611.4865342733465, + "travelMode": "DRIVE", + "confidence": 0.9985111103700887 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374255714, + "lngE7": -1221441345, + "accuracyMeters": 24, + "timestamp": "2013-05-21T14:42:26.962Z" + }, { + "latE7": 374219055, + "lngE7": -1221547699, + "accuracyMeters": 42, + "timestamp": "2013-05-21T14:45:36.131Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.86282 + }, + "duration": { + "startTimestamp": "2013-05-21T14:51:55.435Z", + "endTimestamp": "2013-05-21T21:58:15.901Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276506, + "centerLngE7": -1221402665, + "visitConfidence": 89, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.07212305 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.012973074 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.002787371 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0024638823 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.001949585 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0016642048 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0015319937 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0014495195 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0013891482 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-21T22:04:36.905Z", + "endTimestamp": "2013-05-21T22:10:51.900Z" + }, + "distance": 3819, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374043693, + "lngE7": -1221095809 + }, { + "latE7": 374044761, + "lngE7": -1221097564 + }], + "source": "BACKFILLED", + "distanceMeters": 75.20303612492253, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-21T22:10:51.900Z", + "endTimestamp": "2013-05-21T22:24:48.195Z" + }, + "distance": 4936, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374044761, + "lngE7": -1221097564 + }, { + "latE7": 374245033, + "lngE7": -1221519470 + }], + "source": "BACKFILLED", + "distanceMeters": 5493.181827578896, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-21T22:24:48.195Z", + "endTimestamp": "2013-05-21T22:32:17.155Z" + }, + "distance": 895, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374245223, + "lngE7": -1221519851 + }, { + "latE7": 374207839, + "lngE7": -1221577148 + }, { + "latE7": 374205856, + "lngE7": -1221562728 + }], + "source": "BACKFILLED", + "distanceMeters": 647.5769022868609, + "travelMode": "WALK", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374206085, + "lngE7": -1221573715, + "accuracyMeters": 65, + "timestamp": "2013-05-21T22:26:49.343Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-21T22:32:17.155Z", + "endTimestamp": "2013-05-21T22:37:18.264Z" + }, + "distance": 939, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374205856, + "lngE7": -1221562728 + }, { + "latE7": 374243507, + "lngE7": -1221464462 + }], + "source": "BACKFILLED", + "distanceMeters": 1321.2706196456288, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.834114 + }, + "duration": { + "startTimestamp": "2013-05-21T22:38:18.286Z", + "endTimestamp": "2013-05-22T14:39:30.500Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276387, + "centerLngE7": -1221402989, + "visitConfidence": 96, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.089019544 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.015319738 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0034967004 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0027900494 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0022863054 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.001952566 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0017904722 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0017876461 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0016734209 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-22T14:39:30.500Z", + "endTimestamp": "2013-05-22T14:42:31.652Z" + }, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277458, + "lngE7": -1221402359 + }, { + "latE7": 374259414, + "lngE7": -1221433792 + }], + "source": "BACKFILLED", + "distanceMeters": 584.7842972813867, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-22T14:42:31.652Z", + "endTimestamp": "2013-05-22T14:51:15.746Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374259109, + "lngE7": -1221434097 + }, { + "latE7": 374217720, + "lngE7": -1221545944 + }, { + "latE7": 374277725, + "lngE7": -1221402053 + }], + "source": "BACKFILLED", + "distanceMeters": 618.2494409551443, + "travelMode": "DRIVE", + "confidence": 0.6526369637583175 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374219017, + "lngE7": -1221547470, + "accuracyMeters": 42, + "timestamp": "2013-05-22T14:46:12.217Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.79704 + }, + "duration": { + "startTimestamp": "2013-05-22T14:51:15.746Z", + "endTimestamp": "2013-05-22T23:44:24.719Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276273, + "centerLngE7": -1221403329, + "visitConfidence": 90, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.10877016 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.018584108 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.004497783 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0032499232 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0027594396 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.002354127 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0022662547 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0021475882 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0020757695 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-22T23:44:29.336Z", + "endTimestamp": "2013-05-22T23:50:24.832Z" + }, + "distance": 1718, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374280357, + "lngE7": -1221404724 + }, { + "latE7": 374206352, + "lngE7": -1221563720 + }], + "source": "BACKFILLED", + "distanceMeters": 2506.4490383424536, + "travelMode": "DRIVE", + "confidence": 0.026858270521261957 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-22T23:50:24.832Z", + "endTimestamp": "2013-05-22T23:57:41.323Z" + }, + "distance": 374, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374206352, + "lngE7": -1221563720 + }, { + "latE7": 374218788, + "lngE7": -1221539535 + }], + "source": "BACKFILLED", + "distanceMeters": 333.7863187465882, + "travelMode": "WALK", + "confidence": 0.9637769153990615 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-22T23:57:41.323Z", + "endTimestamp": "2013-05-23T00:03:45.880Z" + }, + "distance": 1455, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374219093, + "lngE7": -1221539306 + }, { + "latE7": 374279899, + "lngE7": -1221404037 + }], + "source": "BACKFILLED", + "distanceMeters": 1931.4221027625238, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.79068 + }, + "duration": { + "startTimestamp": "2013-05-23T00:03:45.880Z", + "endTimestamp": "2013-05-23T00:57:27.597Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276651, + "centerLngE7": -1221403244, + "visitConfidence": 78, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.10155882 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.031210849 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0030080588 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0024595142 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0020621673 + }, { + "latitudeE7": 374263768, + "longitudeE7": -1221409840, + "placeId": "ChIJxeGx_O-6j4ARgUDRP35nyME", + "address": "260 Sheridan Ave b40, Palo Alto, CA 94306, USA", + "name": "Sports Medicine Institute", + "locationConfidence": 0.0019019146 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0018491353 + }, { + "latitudeE7": 374280769, + "longitudeE7": -1221427801, + "placeId": "ChIJjZAQBeW6j4AR7vxyzLRZvC4", + "address": "2450 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Palo Alto Pizza Co.", + "locationConfidence": 0.001766966 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0017396233 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.79068 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 62.965015 + }, + "duration": { + "startTimestamp": "2013-05-23T00:57:27.597Z", + "endTimestamp": "2013-05-23T01:03:35.723Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277343, + "lngE7": -1221402206 + }, { + "latE7": 374297828, + "lngE7": -1221476135 + }], + "source": "BACKFILLED", + "distanceMeters": 925.2295660513997, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 62.965015 + }, + "duration": { + "startTimestamp": "2013-05-23T01:03:35.723Z", + "endTimestamp": "2013-05-23T03:56:57.626Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374298905, + "centerLngE7": -1221477376, + "visitConfidence": 82, + "otherCandidateLocations": [{ + "latitudeE7": 374274745, + "longitudeE7": -1221697190, + "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk", + "address": "450 Serra Mall, Stanford, CA 94305, USA", + "name": "Stanford University", + "locationConfidence": 18.96839 + }, { + "latitudeE7": 374299808, + "longitudeE7": -1221478051, + "placeId": "ChIJDVJnNuG6j4ARNn9mC_LVUow", + "address": "314 Stanford Ave, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 13.133416 + }, { + "latitudeE7": 374315145, + "longitudeE7": -1221476461, + "placeId": "ChIJn6yiduG6j4ARBP9ci2gGMws", + "address": "1899 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Peers Park", + "locationConfidence": 1.4729432 + }, { + "latitudeE7": 374285368, + "longitudeE7": -1221497407, + "placeId": "ChIJaWnuL-e6j4ARR6YIY348nZk", + "address": "1921 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Sundance The Steakhouse", + "locationConfidence": 0.7341276 + }, { + "latitudeE7": 374295943, + "longitudeE7": -1221480602, + "placeId": "ChIJNxYJM-G6j4ARagKLTE6n2a4", + "address": "340 Stanford Ave, Palo Alto, CA 94306, USA", + "name": "Thumbling Child Care Inc", + "locationConfidence": 0.32023284 + }, { + "latitudeE7": 374281404, + "longitudeE7": -1221492644, + "placeId": "ChIJC-K_Iee6j4ARw_Rt2wDSRrE", + "address": "1963 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Valero", + "locationConfidence": 0.2617381 + }, { + "latitudeE7": 374303079, + "longitudeE7": -1221481640, + "placeId": "ChIJjWmeO-G6j4ARNJn892FdWbk", + "name": "Erber Cheryl", + "locationConfidence": 0.23044722 + }, { + "latitudeE7": 374230207, + "longitudeE7": -1221554832, + "placeId": "ChIJT50p0Ny6j4ARf-4JqYPGbU8", + "address": "Graduate Residences Building B, 735 Campus Drive Suite 100, Stanford, CA 94305, USA", + "name": "Escondido Village Housing Front Desk", + "locationConfidence": 0.17400111 + }, { + "latitudeE7": 374273583, + "longitudeE7": -1221491990, + "placeId": "ChIJsUowmuW6j4ARncdA5qucqUk", + "address": "2000 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Starbucks", + "locationConfidence": 0.12068936 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 58, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 62.965015 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.78906 + }, + "duration": { + "startTimestamp": "2013-05-23T03:56:57.626Z", + "endTimestamp": "2013-05-23T04:01:57.786Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374298057, + "lngE7": -1221475448 + }, { + "latE7": 374277534, + "lngE7": -1221401824 + }], + "source": "BACKFILLED", + "distanceMeters": 1169.1546401775158, + "travelMode": "DRIVE", + "confidence": 0.9794783966890662 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.78906 + }, + "duration": { + "startTimestamp": "2013-05-23T04:01:57.786Z", + "endTimestamp": "2013-05-23T14:44:38.576Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276233, + "centerLngE7": -1221403575, + "visitConfidence": 93, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.1187691 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.020052766 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0034543455 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0029981702 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0025458199 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0025339092 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0023265823 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0022858775 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJrSNqOOW6j4ARks8f6dWIC9Y", + "address": "2625 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Intertec", + "locationConfidence": 0.0019302227 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.78906 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.80934 + }, + "duration": { + "startTimestamp": "2013-05-23T14:44:38.576Z", + "endTimestamp": "2013-05-23T14:56:08.813Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374278182, + "lngE7": -1221402435 + }, { + "latE7": 374212417, + "lngE7": -1221546325 + }, { + "latE7": 374268989, + "lngE7": -1221443557 + }], + "source": "BACKFILLED", + "distanceMeters": 4795.361365357203, + "travelMode": "DRIVE", + "confidence": 0.9983692383829968 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374215279, + "lngE7": -1221553040, + "accuracyMeters": 73, + "timestamp": "2013-05-23T14:48:53.481Z" + }, { + "latE7": 374266815, + "lngE7": -1221446075, + "accuracyMeters": 37, + "timestamp": "2013-05-23T14:52:58.582Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.80934 + }, + "duration": { + "startTimestamp": "2013-05-23T14:56:08.813Z", + "endTimestamp": "2013-05-23T23:37:13.739Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276342, + "centerLngE7": -1221403232, + "visitConfidence": 91, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.10301391 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.017288063 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.004115494 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0030939635 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0025931057 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0021962267 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0020845048 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0020207537 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0019243424 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-23T23:37:13.739Z", + "endTimestamp": "2013-05-23T23:42:05.065Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374278182, + "lngE7": -1221402435 + }, { + "latE7": 374206352, + "lngE7": -1221563720 + }], + "source": "BACKFILLED", + "distanceMeters": 2470.3745758178757, + "travelMode": "DRIVE", + "confidence": 0.9729650771489 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-23T23:42:05.065Z", + "endTimestamp": "2013-05-23T23:47:49.400Z" + }, + "distance": 370, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374206352, + "lngE7": -1221563720 + }, { + "latE7": 374205703, + "lngE7": -1221572952 + }], + "source": "BACKFILLED", + "distanceMeters": 1090.76005052902, + "travelMode": "WALK", + "confidence": 0.9856247098377584 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374206085, + "lngE7": -1221573715, + "accuracyMeters": 65, + "timestamp": "2013-05-23T23:44:08.661Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-23T23:50:57.392Z", + "endTimestamp": "2013-05-23T23:55:08.082Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374206352, + "lngE7": -1221563720 + }, { + "latE7": 374288482, + "lngE7": -1221435623 + }], + "source": "BACKFILLED", + "distanceMeters": 1829.218364803767, + "travelMode": "WALK", + "confidence": 0.9910021315896839 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374288751, + "longitudeE7": -1221434036, + "placeId": "ChIJw5kQAuW6j4ARkyELuYYn3fg", + "address": "164 California Ave, Palo Alto, California 94306-1621, United States", + "name": "Mollie Stone\u0027s Markets", + "locationConfidence": 28.070776 + }, + "duration": { + "startTimestamp": "2013-05-23T23:55:08.082Z", + "endTimestamp": "2013-05-24T00:07:16.556Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374289433, + "centerLngE7": -1221436267, + "visitConfidence": 71, + "otherCandidateLocations": [{ + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "locationConfidence": 27.528145 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 6.6051016 + }, { + "latitudeE7": 374286799, + "longitudeE7": -1221439837, + "placeId": "ChIJAeqIUeS6j4AR-Lw1JcwcXkQ", + "address": "265 Cambridge Ave, Palo Alto, CA 94306, USA", + "name": "United States Postal Service", + "locationConfidence": 5.388428 + }, { + "latitudeE7": 374291461, + "longitudeE7": -1221441481, + "placeId": "ChIJp1VHW-S6j4ARaYLteG5hAXg", + "address": "240B Cambridge Ave, Palo Alto, CA 94306, USA", + "name": "Domino\u0027s Pizza", + "locationConfidence": 2.6288326 + }, { + "latitudeE7": 374278502, + "longitudeE7": -1221431950, + "placeId": "ChIJdTbWp-W6j4ARKbrpGRZUp38", + "address": "249 California Ave, Palo Alto, CA 94306, USA", + "name": "FedEx Office Print \u0026 Ship Center", + "locationConfidence": 1.1529622 + }, { + "latitudeE7": 374285618, + "longitudeE7": -1221434178, + "placeId": "ChIJZfNVkDm7j4ARVW4mpMwvRcw", + "address": "200 California Ave, Palo Alto, CA 94306, USA", + "name": "Stript Wax Bar", + "locationConfidence": 1.1499649 + }, { + "latitudeE7": 374287816, + "longitudeE7": -1221430635, + "placeId": "ChIJf6-g_eS6j4AR6b6h8wK_1XY", + "locationConfidence": 1.1184324 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.1031797 + }, { + "latitudeE7": 374291316, + "longitudeE7": -1221440292, + "placeId": "ChIJp1VHW-S6j4ARz4wFafxdGOw", + "address": "240 Cambridge Ave, Palo Alto, CA 94306, USA", + "name": "Maximart Pharmacy", + "locationConfidence": 1.0195507 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 30, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374288751, + "longitudeE7": -1221434036, + "placeId": "ChIJw5kQAuW6j4ARkyELuYYn3fg", + "address": "164 California Ave, Palo Alto, California 94306-1621, United States", + "name": "Mollie Stone\u0027s Markets", + "locationConfidence": 28.070776 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.80416 + }, + "duration": { + "startTimestamp": "2013-05-24T00:07:16.556Z", + "endTimestamp": "2013-05-24T00:09:19.277Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374289169, + "lngE7": -1221441040 + }, { + "latE7": 374277343, + "lngE7": -1221402206 + }], + "source": "BACKFILLED", + "distanceMeters": 490.29421477173287, + "travelMode": "WALK", + "confidence": 0.9993020108330583 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.80416 + }, + "duration": { + "startTimestamp": "2013-05-24T00:09:19.277Z", + "endTimestamp": "2013-05-24T14:02:59.475Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276387, + "centerLngE7": -1221403368, + "visitConfidence": 95, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.11160183 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.017928794 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0032509854 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0027433557 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.00227903 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0022033304 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0021341597 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0020288932 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJrSNqOOW6j4ARks8f6dWIC9Y", + "address": "2625 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Intertec", + "locationConfidence": 0.0016706348 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.80416 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 66.293594 + }, + "duration": { + "startTimestamp": "2013-05-24T14:02:59.475Z", + "endTimestamp": "2013-05-24T14:08:54.393Z" + }, + "distance": 759, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374290771, + "lngE7": -1221429443 + }, { + "latE7": 374297676, + "lngE7": -1221475753 + }], + "source": "BACKFILLED", + "distanceMeters": 1614.7510124697403, + "travelMode": "DRIVE", + "confidence": 0.6936124585792413 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374291801, + "lngE7": -1221428375, + "accuracyMeters": 83, + "timestamp": "2013-05-24T14:05:02.430Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 66.293594 + }, + "duration": { + "startTimestamp": "2013-05-24T14:08:54.393Z", + "endTimestamp": "2013-05-24T14:29:14.561Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 374298814, + "centerLngE7": -1221477500, + "visitConfidence": 78, + "otherCandidateLocations": [{ + "latitudeE7": 374274745, + "longitudeE7": -1221697190, + "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk", + "address": "450 Serra Mall, Stanford, CA 94305, USA", + "name": "Stanford University", + "locationConfidence": 18.715889 + }, { + "latitudeE7": 374299808, + "longitudeE7": -1221478051, + "placeId": "ChIJDVJnNuG6j4ARNn9mC_LVUow", + "address": "314 Stanford Ave, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 10.136492 + }, { + "latitudeE7": 374315145, + "longitudeE7": -1221476461, + "placeId": "ChIJn6yiduG6j4ARBP9ci2gGMws", + "address": "1899 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Peers Park", + "locationConfidence": 1.5265421 + }, { + "latitudeE7": 374295943, + "longitudeE7": -1221480602, + "placeId": "ChIJNxYJM-G6j4ARagKLTE6n2a4", + "address": "340 Stanford Ave, Palo Alto, CA 94306, USA", + "name": "Thumbling Child Care Inc", + "locationConfidence": 0.35303804 + }, { + "latitudeE7": 374281404, + "longitudeE7": -1221492644, + "placeId": "ChIJC-K_Iee6j4ARw_Rt2wDSRrE", + "address": "1963 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Valero", + "locationConfidence": 0.28011853 + }, { + "latitudeE7": 374285368, + "longitudeE7": -1221497407, + "placeId": "ChIJaWnuL-e6j4ARR6YIY348nZk", + "address": "1921 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Sundance The Steakhouse", + "locationConfidence": 0.2470812 + }, { + "latitudeE7": 374303079, + "longitudeE7": -1221481640, + "placeId": "ChIJjWmeO-G6j4ARNJn892FdWbk", + "name": "Erber Cheryl", + "locationConfidence": 0.22168705 + }, { + "latitudeE7": 374230207, + "longitudeE7": -1221554832, + "placeId": "ChIJT50p0Ny6j4ARf-4JqYPGbU8", + "address": "Graduate Residences Building B, 735 Campus Drive Suite 100, Stanford, CA 94305, USA", + "name": "Escondido Village Housing Front Desk", + "locationConfidence": 0.18389148 + }, { + "latitudeE7": 374287594, + "longitudeE7": -1221479714, + "placeId": "ChIJwTPcxea6j4AROh50iytBbDo", + "address": "Palo Alto, CA 94306, USA", + "name": "Free Will Baptist Church", + "locationConfidence": 0.12978509 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 61, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 66.293594 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.82425 + }, + "duration": { + "startTimestamp": "2013-05-24T14:29:14.561Z", + "endTimestamp": "2013-05-24T14:33:15.539Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374298133, + "lngE7": -1221475906 + }, { + "latE7": 374277114, + "lngE7": -1221401519 + }], + "source": "BACKFILLED", + "distanceMeters": 938.557169447318, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.82425 + }, + "duration": { + "startTimestamp": "2013-05-24T14:33:15.539Z", + "endTimestamp": "2013-05-24T23:01:47.501Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276483, + "centerLngE7": -1221403121, + "visitConfidence": 91, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.096072786 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.015464975 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0036123898 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.002899212 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.002381243 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.001975077 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0018590086 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0018429972 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0017232614 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-24T23:01:47.501Z", + "endTimestamp": "2013-05-24T23:12:33.251Z" + }, + "distance": 910, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-24T23:12:33.251Z", + "endTimestamp": "2013-05-24T23:14:12.007Z" + }, + "distance": 139, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-24T23:18:12.260Z", + "endTimestamp": "2013-05-24T23:29:33.282Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374193878, + "lngE7": -1221347045 + }, { + "latE7": 374144554, + "lngE7": -1221386566 + }, { + "latE7": 374221954, + "lngE7": -1221538009 + }, { + "latE7": 374206352, + "lngE7": -1221563720 + }], + "source": "BACKFILLED", + "distanceMeters": 2557.854569872437, + "travelMode": "WALK", + "confidence": 0.9173052471643102 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374147224, + "lngE7": -1221383514, + "accuracyMeters": 81, + "timestamp": "2013-05-24T23:22:14.317Z" + }, { + "latE7": 374222221, + "lngE7": -1221538467, + "accuracyMeters": 9, + "timestamp": "2013-05-24T23:25:45.310Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374215229, + "longitudeE7": -1221553109, + "placeId": "ChIJd-GjbMO6j4ARf0oitoQXD0w", + "address": "890 Escondido Road, Stanford, California 94305-7101, United States", + "name": "Escondido Elementary School", + "locationConfidence": 76.72076 + }, + "duration": { + "startTimestamp": "2013-05-24T23:29:33.282Z", + "endTimestamp": "2013-05-24T23:51:20.094Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 374215231, + "centerLngE7": -1221558215, + "visitConfidence": 54, + "otherCandidateLocations": [{ + "latitudeE7": 374274745, + "longitudeE7": -1221697190, + "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk", + "address": "450 Serra Mall, Stanford, CA 94305, USA", + "name": "Stanford University", + "locationConfidence": 20.799835 + }, { + "latitudeE7": 374217080, + "longitudeE7": -1221581384, + "placeId": "ChIJgyF0Stu6j4ARSwBXxWMCRL0", + "address": "203 Rosse Ln, Stanford, CA 94305, USA", + "name": "Rains Apartments", + "locationConfidence": 0.5509121 + }, { + "latitudeE7": 374221560, + "longitudeE7": -1221563333, + "placeId": "ChIJm3O0J8O6j4ARYisOVyVtoYA", + "address": "Bing Nursery School, Bing Nursery School, 850 Escondido Rd, Stanford, CA 94305, USA", + "name": "Bing Nursery School", + "locationConfidence": 0.4643881 + }, { + "latitudeE7": 374201381, + "longitudeE7": -1221566605, + "placeId": "ChIJ_zoqccO6j4ARWK3U5D1796M", + "address": "875 Bowdoin Ln, Stanford, CA 94305, USA", + "name": "Stanford Campus Recreation Association", + "locationConfidence": 0.3074773 + }, { + "latitudeE7": 374279660, + "longitudeE7": -1221544500, + "placeId": "ChIJRddofN66j4ARwWU2TJEnplc", + "address": "88 Hulme Ct, Stanford, CA 94305, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.25104612 + }, { + "latitudeE7": 374230207, + "longitudeE7": -1221554832, + "placeId": "ChIJT50p0Ny6j4ARf-4JqYPGbU8", + "address": "Graduate Residences Building B, 735 Campus Drive Suite 100, Stanford, CA 94305, USA", + "name": "Escondido Village Housing Front Desk", + "locationConfidence": 0.2306935 + }, { + "latitudeE7": 374215229, + "longitudeE7": -1221553109, + "placeId": "ChIJhxSmP8O6j4ARBLlBRlz7uCY", + "address": "890 Escondido Rd, Stanford, CA 94305, USA", + "name": "Escondido Kids\u0027 Club", + "locationConfidence": 0.16402376, + "isCurrentLocation": true + }, { + "latitudeE7": 374226633, + "longitudeE7": -1221586215, + "placeId": "ChIJZxYlQtu6j4ARvPw6atsEFfM", + "locationConfidence": 0.15087727 + }, { + "latitudeE7": 374229730, + "longitudeE7": -1221554090, + "placeId": "ChIJg-u10dy6j4ARgTiB2Fsuemo", + "address": "Stanford, CA 94305, USA", + "name": "Escondido Village Administration Center", + "locationConfidence": 0.12294385 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "simplifiedRawPath": { + "points": [{ + "latE7": 374207217, + "lngE7": -1221554228, + "accuracyMeters": 42, + "timestamp": "2013-05-24T23:29:33.282Z" + }, { + "latE7": 374212092, + "lngE7": -1221570272, + "accuracyMeters": 25, + "timestamp": "2013-05-24T23:32:02.060Z" + }, { + "latE7": 374215581, + "lngE7": -1221558072, + "accuracyMeters": 35, + "timestamp": "2013-05-24T23:37:47.258Z" + }, { + "latE7": 374222371, + "lngE7": -1221557094, + "accuracyMeters": 30, + "timestamp": "2013-05-24T23:39:46.485Z" + }, { + "latE7": 374222371, + "lngE7": -1221557094, + "accuracyMeters": 30, + "timestamp": "2013-05-24T23:42:47.975Z" + }, { + "latE7": 374222371, + "lngE7": -1221557094, + "accuracyMeters": 30, + "timestamp": "2013-05-24T23:45:54.020Z" + }, { + "latE7": 374209723, + "lngE7": -1221561475, + "accuracyMeters": 57, + "timestamp": "2013-05-24T23:48:20.051Z" + }], + "source": "BACKFILLED", + "distanceMeters": 905.0356681250091 + }, + "locationConfidence": 69, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374215229, + "longitudeE7": -1221553109, + "placeId": "ChIJd-GjbMO6j4ARf0oitoQXD0w", + "address": "890 Escondido Road, Stanford, California 94305-7101, United States", + "name": "Escondido Elementary School", + "locationConfidence": 76.72076 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 47.651962 + }, + "duration": { + "startTimestamp": "2013-05-24T23:51:20.094Z", + "endTimestamp": "2013-05-25T00:00:20.365Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374223175, + "lngE7": -1221556472 + }, { + "latE7": 374206352, + "lngE7": -1221563720 + }, { + "latE7": 374213256, + "lngE7": -1221516876 + }, { + "latE7": 374262084, + "lngE7": -1221475982 + }, { + "latE7": 374258155, + "lngE7": -1221469192 + }], + "source": "BACKFILLED", + "distanceMeters": 1427.5262085237796, + "travelMode": "DRIVE", + "confidence": 0.9761447372281408 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374209709, + "lngE7": -1221561508, + "accuracyMeters": 57, + "timestamp": "2013-05-24T23:48:20.051Z" + }, { + "latE7": 374214020, + "lngE7": -1221518250, + "accuracyMeters": 36, + "timestamp": "2013-05-24T23:55:21.232Z" + }, { + "latE7": 374260597, + "lngE7": -1221480179, + "accuracyMeters": 79, + "timestamp": "2013-05-25T00:00:20.365Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 47.651962 + }, + "duration": { + "startTimestamp": "2013-05-25T00:00:20.365Z", + "endTimestamp": "2013-05-25T00:14:42.483Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374257738, + "centerLngE7": -1221469750, + "visitConfidence": 67, + "otherCandidateLocations": [{ + "latitudeE7": 374274745, + "longitudeE7": -1221697190, + "placeId": "ChIJneqLZyq7j4ARf2j8RBrwzSk", + "address": "450 Serra Mall, Stanford, CA 94305, USA", + "name": "Stanford University", + "locationConfidence": 9.649469 + }, { + "latitudeE7": 374255135, + "longitudeE7": -1221471651, + "placeId": "ChIJA3GyEOa6j4ARo9WrFc23Cpk", + "address": "2280 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Jack in the Box", + "locationConfidence": 5.082496 + }, { + "latitudeE7": 374259055, + "longitudeE7": -1221467842, + "placeId": "ChIJb3EvE-a6j4AR60xYY-_exSc", + "address": "2275 El Camino Real, Palo Alto, CA 94306, USA", + "name": "First Republic Bank", + "locationConfidence": 3.0417814 + }, { + "latitudeE7": 374252919, + "longitudeE7": -1221468032, + "placeId": "ChIJU1wcA-a6j4ARcS9DK7_SdtA", + "address": "2310 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Panda Express", + "locationConfidence": 3.0046065 + }, { + "latitudeE7": 374258940, + "longitudeE7": -1221475777, + "placeId": "ChIJI98VFua6j4ARU2KXCD6DIbo", + "address": "2200 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Palo Alto Shell", + "locationConfidence": 2.4985957 + }, { + "latitudeE7": 374261662, + "longitudeE7": -1221469844, + "placeId": "ChIJ0Xb6Eua6j4AR-hL3ya92iYE", + "address": "2233 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Pip Marketing, Signs, Print", + "locationConfidence": 1.4506882 + }, { + "latitudeE7": 374259439, + "longitudeE7": -1221454485, + "placeId": "ChIJtXQ38-W6j4AR44dFBS3v120", + "address": "448 California Ave, Palo Alto, CA 94306, USA", + "name": "Terún", + "locationConfidence": 1.0639622 + }, { + "latitudeE7": 374260126, + "longitudeE7": -1221469183, + "placeId": "ChIJf88eFDq7j4AR9Spy_hhsYY0", + "address": "2237 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Village Flower Shoppe", + "locationConfidence": 0.9517233 + }, { + "latitudeE7": 374263573, + "longitudeE7": -1221472225, + "placeId": "ChIJPdmDa-a6j4ARd3XaHdAifWo", + "address": "2209 El Camino Real, Palo Alto, CA 94306, USA", + "name": "R \u0026 B Seafood Restaurant", + "locationConfidence": 0.86136687 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 45, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 47.651962 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.82903 + }, + "duration": { + "startTimestamp": "2013-05-25T00:14:42.483Z", + "endTimestamp": "2013-05-25T00:19:24.481Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374255065, + "lngE7": -1221467895 + }, { + "latE7": 374277343, + "lngE7": -1221402206 + }], + "source": "BACKFILLED", + "distanceMeters": 915.7895954833042, + "travelMode": "WALK", + "confidence": 0.99904164115236 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.82903 + }, + "duration": { + "startTimestamp": "2013-05-25T00:19:24.481Z", + "endTimestamp": "2013-05-25T17:14:55.534Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276324, + "centerLngE7": -1221403080, + "visitConfidence": 96, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0943748 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.016393604 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0029232523 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0024249342 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.002083785 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0019364866 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0018934327 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0017967963 + }, { + "latitudeE7": 374273330, + "longitudeE7": -1221403950, + "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4", + "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA", + "name": "Accident Analysis Associates Inc", + "locationConfidence": 0.0015058464 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-25T17:14:55.534Z", + "endTimestamp": "2013-05-25T17:21:23.901Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374012222, + "lngE7": -1221067504 + }], + "source": "BACKFILLED", + "distanceMeters": 5477.428872096449, + "travelMode": "DRIVE", + "confidence": 0.8359270647378793 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-25T17:21:23.901Z", + "endTimestamp": "2013-05-25T17:37:36.194Z" + }, + "distance": 1769, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374012222, + "lngE7": -1221067504 + }, { + "latE7": 374007835, + "lngE7": -1221065216 + }, { + "latE7": 374017944, + "lngE7": -1221081008 + }, { + "latE7": 374043121, + "lngE7": -1221096191 + }], + "source": "BACKFILLED", + "distanceMeters": 556.6755652295768, + "travelMode": "WALK", + "confidence": 0.7074953763413304 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374005470, + "lngE7": -1221063309, + "accuracyMeters": 45, + "timestamp": "2013-05-25T17:27:56.136Z" + }, { + "latE7": 374017792, + "lngE7": -1221080704, + "accuracyMeters": 45, + "timestamp": "2013-05-25T17:34:23.650Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-25T17:46:01.858Z", + "endTimestamp": "2013-05-25T17:53:56.930Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374049148, + "lngE7": -1221086425 + }, { + "latE7": 374277915, + "lngE7": -1221402282 + }], + "source": "BACKFILLED", + "distanceMeters": 5407.701740323884, + "travelMode": "DRIVE", + "confidence": 0.8110855422683221 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.784035 + }, + "duration": { + "startTimestamp": "2013-05-25T17:53:56.930Z", + "endTimestamp": "2013-05-25T18:46:27.080Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374277605, + "centerLngE7": -1221403549, + "visitConfidence": 75, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.11979024 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.0103222355 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.003959983 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.003044054 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0025619154 + }, { + "latitudeE7": 374280769, + "longitudeE7": -1221427801, + "placeId": "ChIJjZAQBeW6j4AR7vxyzLRZvC4", + "address": "2450 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Palo Alto Pizza Co.", + "locationConfidence": 0.0021048058 + }, { + "latitudeE7": 374282040, + "longitudeE7": -1221430771, + "placeId": "ChIJ18XmBuW6j4AR92u-CQCK-_U", + "address": "201 California Ave, Palo Alto, CA 94306, USA", + "name": "Baumé", + "locationConfidence": 0.0019119063 + }, { + "latitudeE7": 374283882, + "longitudeE7": -1221426273, + "placeId": "ChIJ74GDA-W6j4ARxWkAgnw8D6g", + "address": "151 California Ave, Palo Alto, CA 94306, USA", + "name": "Peking Duck Restaurant", + "locationConfidence": 0.0018956425 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0018724627 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.784035 + }, + "endLocation": { + "latitudeE7": 374288751, + "longitudeE7": -1221434036, + "placeId": "ChIJw5kQAuW6j4ARkyELuYYn3fg", + "address": "164 California Ave, Palo Alto, California 94306-1621, United States", + "name": "Mollie Stone\u0027s Markets", + "locationConfidence": 33.955853, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-05-25T18:46:27.080Z", + "endTimestamp": "2013-05-25T18:49:58.414Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374279937, + "lngE7": -1221404113 + }, { + "latE7": 374288291, + "lngE7": -1221435317 + }], + "source": "BACKFILLED", + "distanceMeters": 388.248283028159, + "travelMode": "WALK", + "confidence": 0.9992033339686518 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374288751, + "longitudeE7": -1221434036, + "placeId": "ChIJw5kQAuW6j4ARkyELuYYn3fg", + "address": "164 California Ave, Palo Alto, California 94306-1621, United States", + "name": "Mollie Stone\u0027s Markets", + "locationConfidence": 33.955853, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-05-25T18:49:58.414Z", + "endTimestamp": "2013-05-25T19:00:18.975Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374289578, + "centerLngE7": -1221433622, + "visitConfidence": 76, + "otherCandidateLocations": [{ + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "locationConfidence": 26.588251 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 10.155618 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 1.8825176 + }, { + "latitudeE7": 374294542, + "longitudeE7": -1221437749, + "placeId": "ChIJw5kQAuW6j4AR6lmmC3KP9o8", + "address": "164 California Ave, Palo Alto, CA 94306, USA", + "name": "rePLANET Recycling", + "locationConfidence": 1.6258453, + "isCurrentLocation": true + }, { + "latitudeE7": 374287816, + "longitudeE7": -1221430635, + "placeId": "ChIJf6-g_eS6j4AR6b6h8wK_1XY", + "locationConfidence": 1.457066 + }, { + "latitudeE7": 374291461, + "longitudeE7": -1221441481, + "placeId": "ChIJp1VHW-S6j4ARaYLteG5hAXg", + "address": "240B Cambridge Ave, Palo Alto, CA 94306, USA", + "name": "Domino\u0027s Pizza", + "locationConfidence": 1.2165235 + }, { + "latitudeE7": 374278502, + "longitudeE7": -1221431950, + "placeId": "ChIJdTbWp-W6j4ARKbrpGRZUp38", + "address": "249 California Ave, Palo Alto, CA 94306, USA", + "name": "FedEx Office Print \u0026 Ship Center", + "locationConfidence": 1.0837091 + }, { + "latitudeE7": 374285618, + "longitudeE7": -1221434178, + "placeId": "ChIJZfNVkDm7j4ARVW4mpMwvRcw", + "address": "200 California Ave, Palo Alto, CA 94306, USA", + "name": "Stript Wax Bar", + "locationConfidence": 0.9972979 + }, { + "latitudeE7": 374288823, + "longitudeE7": -1221433682, + "placeId": "ChIJZblx_OS6j4ARiy351dORP8w", + "address": "Mollie Stone\u0027s, 164 S California Av, Palo Alto, CA 94306, USA", + "name": "Coinstar", + "locationConfidence": 0.91097677, + "isCurrentLocation": true + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 34, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374288751, + "longitudeE7": -1221434036, + "placeId": "ChIJw5kQAuW6j4ARkyELuYYn3fg", + "address": "164 California Ave, Palo Alto, California 94306-1621, United States", + "name": "Mollie Stone\u0027s Markets", + "locationConfidence": 33.955853, + "isCurrentLocation": true + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.86767 + }, + "duration": { + "startTimestamp": "2013-05-25T19:00:18.975Z", + "endTimestamp": "2013-05-25T19:06:23.230Z" + }, + "distance": 310, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374288291, + "lngE7": -1221435317 + }, { + "latE7": 374277343, + "lngE7": -1221402206 + }], + "source": "BACKFILLED", + "distanceMeters": 418.71709178158596, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.86767 + }, + "duration": { + "startTimestamp": "2013-05-25T19:06:23.230Z", + "endTimestamp": "2013-05-27T19:00:13.257Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276522, + "centerLngE7": -1221402846, + "visitConfidence": 99, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.081000246 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.0046456633 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0025969693 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0020810682 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0017473426 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0016312241 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.001568843 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0014861737 + }, { + "latitudeE7": 374273330, + "longitudeE7": -1221403950, + "placeId": "ChIJF-NiAPC6j4AR0KXLOwRhES4", + "address": "2585 Park Blvd # Z104, Palo Alto, CA 94306, USA", + "name": "Accident Analysis Associates Inc", + "locationConfidence": 0.0012049092 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-27T19:00:13.257Z", + "endTimestamp": "2013-05-27T19:03:17.900Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374280204, + "lngE7": -1221404495 + }, { + "latE7": 374278259, + "lngE7": -1221410217 + }, { + "latE7": 374272613, + "lngE7": -1221435089 + }], + "source": "BACKFILLED", + "distanceMeters": 492.8044735832192, + "travelMode": "WALK", + "confidence": 0.9999010946686769 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374276619, + "lngE7": -1221410370, + "accuracyMeters": 32, + "timestamp": "2013-05-27T18:59:10.731Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 13.104269 + }, + "duration": { + "startTimestamp": "2013-05-27T19:10:37.634Z", + "endTimestamp": "2013-05-27T19:21:36.449Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374261586, + "centerLngE7": -1221462543, + "visitConfidence": 60, + "otherCandidateLocations": [{ + "latitudeE7": 374259439, + "longitudeE7": -1221454485, + "placeId": "ChIJtXQ38-W6j4AR44dFBS3v120", + "address": "448 California Ave, Palo Alto, CA 94306, USA", + "name": "Terún", + "locationConfidence": 4.3425827 + }, { + "latitudeE7": 374254084, + "longitudeE7": -1221453292, + "placeId": "ChIJ06EYWO-6j4AR5x1zss9iick", + "address": "477 California Ave, Palo Alto, CA 94306, USA", + "name": "Izzy\u0027s Brooklyn Bagels", + "locationConfidence": 3.9647813 + }, { + "latitudeE7": 374258515, + "longitudeE7": -1221454598, + "placeId": "ChIJIdvn8OW6j4ARLuSJEAHBDoY", + "address": "454 California Ave, Palo Alto, CA 94306, USA", + "name": "Jin Sho", + "locationConfidence": 2.6382318 + }, { + "latitudeE7": 374261647, + "longitudeE7": -1221453776, + "placeId": "ChIJc37X8eW6j4ARCGK8720jjo8", + "address": "440 California Ave, Palo Alto, CA 94306, USA", + "name": "Country Sun Natural Foods", + "locationConfidence": 2.589039 + }, { + "latitudeE7": 374259055, + "longitudeE7": -1221467842, + "placeId": "ChIJb3EvE-a6j4AR60xYY-_exSc", + "address": "2275 El Camino Real, Palo Alto, CA 94306, USA", + "name": "First Republic Bank", + "locationConfidence": 2.2676682 + }, { + "latitudeE7": 374255204, + "longitudeE7": -1221452713, + "placeId": "ChIJRbsp9uW6j4ARyUJHxK7xFX8", + "address": "463 California Ave, Palo Alto, CA 94306, USA", + "name": "La Bodeguita Del Medio", + "locationConfidence": 1.9100096 + }, { + "latitudeE7": 374260126, + "longitudeE7": -1221469183, + "placeId": "ChIJf88eFDq7j4AR9Spy_hhsYY0", + "address": "2237 El Camino Real, Palo Alto, CA 94306, USA", + "name": "Village Flower Shoppe", + "locationConfidence": 1.6339332 + }, { + "latitudeE7": 374263520, + "longitudeE7": -1221464820, + "placeId": "ChIJQQY6cua6j4ARBwkxPPNI4Yo", + "address": "470 Cambridge Ave, Palo Alto, CA 94306, USA", + "name": "Wesley United Methodist Church", + "locationConfidence": 1.3846073 + }, { + "latitudeE7": 374260050, + "longitudeE7": -1221447975, + "placeId": "ChIJA_0-8-W6j4ARRLCg6K5oT6k", + "address": "344 California Ave, Palo Alto, CA 94306, USA", + "name": "ZombieRunner", + "locationConfidence": 1.34745 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 17, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 13.104269 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.71576 + }, + "duration": { + "startTimestamp": "2013-05-27T19:21:36.449Z", + "endTimestamp": "2013-05-27T19:30:38.754Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374256782, + "lngE7": -1221467590 + }, { + "latE7": 374266433, + "lngE7": -1221445083 + }, { + "latE7": 374278068, + "lngE7": -1221402816 + }], + "source": "BACKFILLED", + "distanceMeters": 895.9075244217164, + "travelMode": "WALK", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374265976, + "lngE7": -1221444244, + "accuracyMeters": 36, + "timestamp": "2013-05-27T19:22:37.573Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.71576 + }, + "duration": { + "startTimestamp": "2013-05-27T19:30:38.754Z", + "endTimestamp": "2013-05-27T20:21:03.335Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374278074, + "centerLngE7": -1221405183, + "visitConfidence": 78, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.11479273 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.037145823 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0056854305 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0054667154 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0048028613 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.003947045 + }, { + "latitudeE7": 374280769, + "longitudeE7": -1221427801, + "placeId": "ChIJjZAQBeW6j4AR7vxyzLRZvC4", + "address": "2450 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Palo Alto Pizza Co.", + "locationConfidence": 0.003298022 + }, { + "latitudeE7": 374283882, + "longitudeE7": -1221426273, + "placeId": "ChIJ74GDA-W6j4ARxWkAgnw8D6g", + "address": "151 California Ave, Palo Alto, CA 94306, USA", + "name": "Peking Duck Restaurant", + "locationConfidence": 0.0029951865 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0028226227 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-27T20:21:03.335Z", + "endTimestamp": "2013-05-27T20:27:08.374Z" + }, + "distance": 877, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374279937, + "lngE7": -1221404037 + }, { + "latE7": 374257202, + "lngE7": -1221466751 + }, { + "latE7": 374245033, + "lngE7": -1221446228 + }], + "source": "BACKFILLED", + "distanceMeters": 844.332287996826, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374259071, + "lngE7": -1221470490, + "accuracyMeters": 60, + "timestamp": "2013-05-27T20:23:03.927Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-27T20:27:08.374Z", + "endTimestamp": "2013-05-27T20:31:06.694Z" + }, + "distance": 507, + "confidence": "HIGH", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374245376, + "lngE7": -1221445846 + }, { + "latE7": 374277420, + "lngE7": -1221402282 + }], + "source": "BACKFILLED", + "distanceMeters": 790.5195040601651, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.890144 + }, + "duration": { + "startTimestamp": "2013-05-27T20:31:06.694Z", + "endTimestamp": "2013-05-27T21:09:25.197Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276610, + "centerLngE7": -1221402448, + "visitConfidence": 78, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.045593824 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.0111799445 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0034974988 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0024004467 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0022809075 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0017589341 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0012787046 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0012270908 + }, { + "latitudeE7": 374281042, + "longitudeE7": -1221413747, + "placeId": "ChIJfT0IOOW6j4ARF8U5xucxAUE", + "address": "150 Grant Ave F, Palo Alto, CA 94306, USA", + "name": "Loy D. Martin Furniture", + "locationConfidence": 0.0012154556 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.890144 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.803085 + }, + "duration": { + "startTimestamp": "2013-05-27T21:09:25.522Z", + "endTimestamp": "2013-05-27T21:27:27.003Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277648, + "lngE7": -1221401977 + }, { + "latE7": 374110221, + "lngE7": -1221236953 + }, { + "latE7": 374281120, + "lngE7": -1221405944 + }], + "source": "BACKFILLED", + "distanceMeters": 6910.1012224426995, + "travelMode": "DRIVE", + "confidence": 0.986388580474852 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374109573, + "lngE7": -1221238174, + "accuracyMeters": 42, + "timestamp": "2013-05-27T21:21:28.550Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.803085 + }, + "duration": { + "startTimestamp": "2013-05-27T21:27:27.003Z", + "endTimestamp": "2013-05-27T21:43:39.881Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374277600, + "centerLngE7": -1221403893, + "visitConfidence": 77, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.08581843 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.014548435 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.01003801 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.004427545 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.004233767 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0035034674 + }, { + "latitudeE7": 374281042, + "longitudeE7": -1221413747, + "placeId": "ChIJfT0IOOW6j4ARF8U5xucxAUE", + "address": "150 Grant Ave F, Palo Alto, CA 94306, USA", + "name": "Loy D. Martin Furniture", + "locationConfidence": 0.0024435683 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0021759016 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.002170618 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.803085 + }, + "endLocation": { + "latitudeE7": 374265383, + "longitudeE7": -1221400207 + }, + "duration": { + "startTimestamp": "2013-05-27T21:43:39.881Z", + "endTimestamp": "2013-05-27T21:46:23.765Z" + }, + "distance": 140, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374278068, + "lngE7": -1221402816 + }, { + "latE7": 374266815, + "lngE7": -1221399078 + }], + "source": "BACKFILLED", + "distanceMeters": 159.50407093070183, + "travelMode": "WALK", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374265383, + "longitudeE7": -1221400207 + }, + "endLocation": { + "latitudeE7": 374242993, + "longitudeE7": -1221147512 + }, + "duration": { + "startTimestamp": "2013-05-27T21:46:23.765Z", + "endTimestamp": "2013-05-27T21:50:46.753Z" + }, + "distance": 2898, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "simplifiedRawPath": { + "points": [{ + "latE7": 374280411, + "lngE7": -1221207757, + "accuracyMeters": 43, + "timestamp": "2013-05-27T21:49:39.074Z" + }], + "source": "BACKFILLED", + "distanceMeters": 2382.9549697274715 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-27T21:50:46.753Z", + "endTimestamp": "2013-05-27T21:57:54.315Z" + }, + "distance": 1313, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374242782, + "lngE7": -1221147766 + }, { + "latE7": 374284400, + "lngE7": -1221056060 + }, { + "latE7": 374270057, + "lngE7": -1221095428 + }], + "source": "BACKFILLED", + "distanceMeters": 568.621768305288, + "travelMode": "WALK", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374284286, + "lngE7": -1221055984, + "accuracyMeters": 5, + "timestamp": "2013-05-27T21:53:23.264Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-27T21:57:54.315Z", + "endTimestamp": "2013-05-27T22:10:42.291Z" + }, + "distance": 3772, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374269752, + "lngE7": -1221095199 + }, { + "latE7": 374023857, + "lngE7": -1221125411 + }], + "source": "BACKFILLED", + "distanceMeters": 3846.1473248572142, + "travelMode": "DRIVE", + "confidence": 0.8649864408052963 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374016175, + "longitudeE7": -1221129674, + "placeId": "ChIJEVHD9Zuwj4ARBKHe9fJMUIA", + "address": "685 San Antonio Road Suite 19, Mountain View, California 94040, United States", + "name": "Jared", + "locationConfidence": 14.109853, + "isCurrentLocation": true + }, + "duration": { + "startTimestamp": "2013-05-27T22:16:28.155Z", + "endTimestamp": "2013-05-27T22:31:36.896Z" + }, + "placeConfidence": "LOW_CONFIDENCE", + "centerLatE7": 374018236, + "centerLngE7": -1221129221, + "visitConfidence": 63, + "otherCandidateLocations": [{ + "latitudeE7": 374017565, + "longitudeE7": -1221118174, + "placeId": "ChIJKfoIrJ-wj4ARefOkpOnvEYc", + "address": "645 San Antonio Rd, Mountain View, CA 94040, USA", + "name": "Safeway", + "locationConfidence": 12.23225 + }, { + "latitudeE7": 374029196, + "longitudeE7": -1221137372, + "placeId": "ChIJZ9aWP5ywj4ARSQFRC5YOcrc", + "address": "630 San Antonio Rd, Mountain View, CA 94040, USA", + "name": "Sprouts Farmers Market", + "locationConfidence": 8.044707 + }, { + "latitudeE7": 374014648, + "longitudeE7": -1221130160, + "placeId": "ChIJ7R0oCJywj4ARzvtHBegJQ3Y", + "address": "685 San Antonio Rd, Mountain View, CA 94040, USA", + "name": "Nekter Juice Bar", + "locationConfidence": 7.710585, + "isCurrentLocation": true + }, { + "latitudeE7": 373999768, + "longitudeE7": -1221097812, + "placeId": "ChIJoSoALZmwj4AR0AeUKF4goUY", + "address": "2550 W El Camino Real, Mountain View, CA 94040, USA", + "name": "San Antonio Center", + "locationConfidence": 6.063436 + }, { + "latitudeE7": 374019094, + "longitudeE7": -1221144992, + "placeId": "ChIJAwHOZJywj4AR-4DRT7M_KuA", + "locationConfidence": 5.378735 + }, { + "latitudeE7": 374020870, + "longitudeE7": -1221107610, + "placeId": "ChIJNQXj95iwj4ARmJbKFsVOjYM", + "address": "590 Showers Dr, Mountain View, CA 94040, USA", + "name": "Trader Joe\u0027s", + "locationConfidence": 3.5700228 + }, { + "latitudeE7": 374027620, + "longitudeE7": -1221122274, + "placeId": "ChIJ-0gSHZywj4ARQGh008-HoLA", + "address": "565 San Antonio Rd #26, Mountain View, CA 94040, USA", + "name": "Veggie Grill", + "locationConfidence": 2.500743 + }, { + "latitudeE7": 374009260, + "longitudeE7": -1221121840, + "placeId": "ChIJyS7o4Zuwj4ARon29W1GsXJo", + "address": "2580 W El Camino Real, Mountain View, CA 94040, USA", + "name": "The Counter Mountain View", + "locationConfidence": 2.480193 + }, { + "latitudeE7": 374009029, + "longitudeE7": -1221148768, + "placeId": "ChIJMwGvgZuwj4ARXPraJMJy13Q", + "address": "4546 El Camino Real, Los Altos, CA 94022, USA", + "name": "Village Court Shopping Center", + "locationConfidence": 2.4135215 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 18, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374016175, + "longitudeE7": -1221129674, + "placeId": "ChIJEVHD9Zuwj4ARBKHe9fJMUIA", + "address": "685 San Antonio Road Suite 19, Mountain View, California 94040, United States", + "name": "Jared", + "locationConfidence": 14.109853, + "isCurrentLocation": true + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.81877 + }, + "duration": { + "startTimestamp": "2013-05-27T22:31:36.896Z", + "endTimestamp": "2013-05-27T22:37:46.367Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374023857, + "lngE7": -1221125411 + }, { + "latE7": 374283256, + "lngE7": -1221406707 + }], + "source": "BACKFILLED", + "distanceMeters": 4531.836908594771, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.81877 + }, + "duration": { + "startTimestamp": "2013-05-27T22:37:46.367Z", + "endTimestamp": "2013-05-28T14:39:53.448Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276402, + "centerLngE7": -1221403165, + "visitConfidence": 96, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.098924845 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.016345453 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0038468384 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.002984661 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0024763031 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0020814822 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0019560033 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0019316511 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0018169577 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.81877 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.831825 + }, + "duration": { + "startTimestamp": "2013-05-28T14:39:53.448Z", + "endTimestamp": "2013-05-28T14:53:31.546Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374217720, + "lngE7": -1221545944 + }], + "source": "BACKFILLED", + "distanceMeters": 4599.051857075013, + "travelMode": "DRIVE", + "confidence": 0.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374217682, + "lngE7": -1221546173, + "accuracyMeters": 54, + "timestamp": "2013-05-28T14:45:23.366Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.831825 + }, + "duration": { + "startTimestamp": "2013-05-28T14:53:31.546Z", + "endTimestamp": "2013-05-28T23:04:29.597Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276450, + "centerLngE7": -1221403039, + "visitConfidence": 90, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.091405235 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.015170062 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0034937337 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0028167963 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0023051992 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0019365425 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0018015004 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0017872674 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0016731644 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-28T23:04:29.597Z", + "endTimestamp": "2013-05-28T23:11:45.559Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374278182, + "lngE7": -1221402435 + }, { + "latE7": 374275932, + "lngE7": -1221415863 + }, { + "latE7": 374248428, + "lngE7": -1221452789 + }, { + "latE7": 374208908, + "lngE7": -1221572341 + }], + "source": "BACKFILLED", + "distanceMeters": 2844.9127221952062, + "travelMode": "DRIVE", + "confidence": 0.9451452048399123 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374277382, + "lngE7": -1221414642, + "accuracyMeters": 35, + "timestamp": "2013-05-28T23:04:29.597Z" + }, { + "latE7": 374248428, + "lngE7": -1221452789, + "accuracyMeters": 40, + "timestamp": "2013-05-28T23:05:33.865Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-28T23:11:45.559Z", + "endTimestamp": "2013-05-28T23:31:11.748Z" + }, + "distance": 2533, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374208908, + "lngE7": -1221572341 + }, { + "latE7": 374205093, + "lngE7": -1221561203 + }, { + "latE7": 374275283, + "lngE7": -1221494750 + }, { + "latE7": 374251708, + "lngE7": -1221458892 + }, { + "latE7": 374288291, + "lngE7": -1221435317 + }, { + "latE7": 374287185, + "lngE7": -1221428222 + }], + "source": "BACKFILLED", + "distanceMeters": 2148.533344214161, + "travelMode": "WALK", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374206467, + "lngE7": -1221560135, + "accuracyMeters": 45, + "timestamp": "2013-05-28T23:17:23.909Z" + }, { + "latE7": 374274368, + "lngE7": -1221496048, + "accuracyMeters": 37, + "timestamp": "2013-05-28T23:19:52.451Z" + }, { + "latE7": 374252090, + "lngE7": -1221459732, + "accuracyMeters": 37, + "timestamp": "2013-05-28T23:21:55.595Z" + }, { + "latE7": 374289665, + "lngE7": -1221434402, + "accuracyMeters": 24, + "timestamp": "2013-05-28T23:28:02.291Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374286768, + "longitudeE7": -1221427377 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.841064 + }, + "duration": { + "startTimestamp": "2013-05-28T23:31:11.748Z", + "endTimestamp": "2013-05-28T23:34:33.743Z" + }, + "confidence": "UNKNOWN_CONFIDENCE", + "activities": [{ + "activityType": "UNKNOWN_ACTIVITY_TYPE", + "probability": 0.0 + }], + "simplifiedRawPath": { + "points": [{ + "latE7": 374339382, + "lngE7": -1221392684, + "accuracyMeters": 30, + "timestamp": "2013-05-28T23:33:32.449Z" + }], + "source": "BACKFILLED", + "distanceMeters": 1333.636065975532 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.841064 + }, + "duration": { + "startTimestamp": "2013-05-28T23:34:33.743Z", + "endTimestamp": "2013-05-29T14:37:40.859Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276525, + "centerLngE7": -1221402975, + "visitConfidence": 96, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.08735204 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.014266795 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0032501495 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0027152568 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0021972626 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0018264644 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0017191498 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0016694167 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0015737513 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.841064 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.851166 + }, + "duration": { + "startTimestamp": "2013-05-29T14:37:40.859Z", + "endTimestamp": "2013-05-29T14:51:23.435Z" + }, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374258346, + "lngE7": -1221437988 + }, { + "latE7": 374219017, + "lngE7": -1221552886 + }, { + "latE7": 374218330, + "lngE7": -1221485290 + }, { + "latE7": 374269905, + "lngE7": -1221442184 + }, { + "latE7": 374277763, + "lngE7": -1221402130 + }], + "source": "BACKFILLED", + "distanceMeters": 4785.183196721214, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374258041, + "lngE7": -1221437378, + "accuracyMeters": 44, + "timestamp": "2013-05-29T14:38:41.822Z" + }, { + "latE7": 374216728, + "lngE7": -1221554871, + "accuracyMeters": 36, + "timestamp": "2013-05-29T14:43:16.161Z" + }, { + "latE7": 374218216, + "lngE7": -1221485062, + "accuracyMeters": 27, + "timestamp": "2013-05-29T14:45:57.286Z" + }, { + "latE7": 374269447, + "lngE7": -1221443329, + "accuracyMeters": 39, + "timestamp": "2013-05-29T14:49:20.144Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.851166 + }, + "duration": { + "startTimestamp": "2013-05-29T14:51:23.435Z", + "endTimestamp": "2013-05-30T00:24:39.913Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374276592, + "centerLngE7": -1221402850, + "visitConfidence": 91, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.08090092 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.013274189 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0029598859 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.002584739 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0020595645 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.001704694 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0016148346 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.001530117 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0014553012 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-30T00:24:39.913Z", + "endTimestamp": "2013-05-30T00:38:25.538Z" + }, + "distance": 2074, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277343, + "lngE7": -1221402206 + }, { + "latE7": 374278945, + "lngE7": -1221420745 + }, { + "latE7": 374261932, + "lngE7": -1221476669 + }, { + "latE7": 374210395, + "lngE7": -1221575164 + }, { + "latE7": 374227638, + "lngE7": -1221535415 + }], + "source": "BACKFILLED", + "distanceMeters": 1872.7203728688041, + "travelMode": "WALK", + "confidence": 0.8164132930808975 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374279366, + "lngE7": -1221418457, + "accuracyMeters": 22, + "timestamp": "2013-05-30T00:26:20.961Z" + }, { + "latE7": 374260864, + "lngE7": -1221474762, + "accuracyMeters": 40, + "timestamp": "2013-05-30T00:29:16.995Z" + }, { + "latE7": 374211464, + "lngE7": -1221570206, + "accuracyMeters": 25, + "timestamp": "2013-05-30T00:33:27.844Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-30T00:38:25.538Z", + "endTimestamp": "2013-05-30T00:57:26.531Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374227333, + "lngE7": -1221535644 + }, { + "latE7": 374169883, + "lngE7": -1221302261 + }, { + "latE7": 374213333, + "lngE7": -1221363906 + }, { + "latE7": 374277610, + "lngE7": -1221401901 + }], + "source": "BACKFILLED", + "distanceMeters": 2216.0312505273473, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374171371, + "lngE7": -1221301041, + "accuracyMeters": 30, + "timestamp": "2013-05-30T00:47:06.670Z" + }, { + "latE7": 374212990, + "lngE7": -1221363220, + "accuracyMeters": 24, + "timestamp": "2013-05-30T00:53:21.814Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.858475 + }, + "duration": { + "startTimestamp": "2013-05-30T00:57:26.531Z", + "endTimestamp": "2013-05-30T14:40:29.145Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374278965, + "centerLngE7": -1221400482, + "visitConfidence": 91, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.074158765 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.012031097 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.005047023 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.002609204 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0022459428 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0016997212 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0015752423 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0014453823 + }, { + "latitudeE7": 374270127, + "longitudeE7": -1221422070, + "placeId": "ChIJU6FNXOW6j4ARLFyPIAahNIU", + "address": "270 Grant Ave # 204, Palo Alto, CA 94306, USA", + "name": "Santa Clara County Superior Ct", + "locationConfidence": 0.0012749592 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.858475 + }, + "endLocation": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 86.042274 + }, + "duration": { + "startTimestamp": "2013-05-30T14:40:29.145Z", + "endTimestamp": "2013-05-30T15:06:59.413Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277648, + "lngE7": -1221401977 + }, { + "latE7": 374260330, + "lngE7": -1221436309 + }, { + "latE7": 374217071, + "lngE7": -1221542510 + }, { + "latE7": 374509277, + "lngE7": -1221586990 + }, { + "latE7": 374680480, + "lngE7": -1221565704 + }, { + "latE7": 374861907, + "lngE7": -1221473846 + }], + "source": "BACKFILLED", + "distanceMeters": 9879.22157868914, + "travelMode": "DRIVE", + "confidence": 0.9658412646874545 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374262390, + "lngE7": -1221437531, + "accuracyMeters": 40, + "timestamp": "2013-05-30T14:43:56.951Z" + }, { + "latE7": 374218864, + "lngE7": -1221546097, + "accuracyMeters": 52, + "timestamp": "2013-05-30T14:50:18.480Z" + }, { + "latE7": 374506493, + "lngE7": -1221590271, + "accuracyMeters": 97, + "timestamp": "2013-05-30T14:57:52.879Z" + }, { + "latE7": 374681816, + "lngE7": -1221566238, + "accuracyMeters": 15, + "timestamp": "2013-05-30T15:02:52.425Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 86.042274 + }, + "duration": { + "startTimestamp": "2013-05-30T15:06:59.413Z", + "endTimestamp": "2013-05-30T19:31:06.026Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 374855770, + "centerLngE7": -1221481411, + "visitConfidence": 81, + "otherCandidateLocations": [{ + "latitudeE7": 374858048, + "longitudeE7": -1221480233, + "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 9.125081 + }, { + "latitudeE7": 374841127, + "longitudeE7": -1221482444, + "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 2.5058904 + }, { + "latitudeE7": 374945295, + "longitudeE7": -1220734968, + "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4", + "address": "2 Marshlands Rd, Fremont, CA 94555, USA", + "name": "Don Edwards San Francisco Bay National Wildlife Refuge", + "locationConfidence": 2.2965887 + }, { + "latitudeE7": 374841002, + "longitudeE7": -1221482519, + "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs", + "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA", + "name": "Alan K Newman DDS PC", + "locationConfidence": 0.016460212 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q", + "locationConfidence": 0.007123902 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4AR42t2K4tvt5k", + "locationConfidence": 0.006583685 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "simplifiedRawPath": { + "points": [{ + "latE7": 374858838, + "lngE7": -1221472884, + "accuracyMeters": 73, + "timestamp": "2013-05-30T15:09:21.436Z" + }, { + "latE7": 374858838, + "lngE7": -1221472884, + "accuracyMeters": 23, + "timestamp": "2013-05-30T15:10:59.475Z" + }, { + "latE7": 374853951, + "lngE7": -1221475686, + "accuracyMeters": 34, + "timestamp": "2013-05-30T15:12:22.424Z" + }, { + "latE7": 374857815, + "lngE7": -1221484976, + "accuracyMeters": 28, + "timestamp": "2013-05-30T15:16:38.446Z" + }, { + "latE7": 374859723, + "lngE7": -1221492777, + "accuracyMeters": 40, + "timestamp": "2013-05-30T15:26:56.993Z" + }], + "source": "BACKFILLED", + "distanceMeters": 1448.475327159347 + }, + "locationConfidence": 77, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-30T19:31:06.026Z", + "endTimestamp": "2013-05-30T19:53:35.161Z" + }, + "distance": 5710, + "confidence": "LOW", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374859313, + "lngE7": -1221480331 + }, { + "latE7": 374548950, + "lngE7": -1221781845 + }, { + "latE7": 374518775, + "lngE7": -1221794738 + }], + "source": "BACKFILLED", + "distanceMeters": 7114.098732478995, + "travelMode": "DRIVE", + "confidence": 0.9962689858151275 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374547653, + "lngE7": -1221774826, + "accuracyMeters": 49, + "timestamp": "2013-05-30T19:50:28.234Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-30T20:00:05.065Z", + "endTimestamp": "2013-05-30T20:12:05.033Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374519844, + "lngE7": -1221796722 + }, { + "latE7": 374279022, + "lngE7": -1221448822 + }, { + "latE7": 374283828, + "lngE7": -1221395263 + }], + "source": "BACKFILLED", + "distanceMeters": 5463.660002327401, + "travelMode": "DRIVE", + "confidence": 0.9977404029695996 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374279175, + "lngE7": -1221449814, + "accuracyMeters": 71, + "timestamp": "2013-05-30T20:10:09.430Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.8687 + }, + "duration": { + "startTimestamp": "2013-05-30T20:12:05.033Z", + "endTimestamp": "2013-05-30T22:37:14.768Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374279877, + "centerLngE7": -1221399695, + "visitConfidence": 70, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.056612696 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.011765054 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.0065590693 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0028491807 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0025841764 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0021606905 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0017208023 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0016689696 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0016545571 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.8687 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.85014 + }, + "duration": { + "startTimestamp": "2013-05-30T22:37:14.768Z", + "endTimestamp": "2013-05-30T22:57:24.727Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374277610, + "lngE7": -1221401901 + }, { + "latE7": 374266357, + "lngE7": -1221431274 + }, { + "latE7": 374250907, + "lngE7": -1221485443 + }, { + "latE7": 374206352, + "lngE7": -1221563720 + }, { + "latE7": 374213142, + "lngE7": -1221489562 + }, { + "latE7": 374278182, + "lngE7": -1221436157 + }, { + "latE7": 374278221, + "lngE7": -1221402435 + }], + "source": "BACKFILLED", + "distanceMeters": 5093.832783644707, + "travelMode": "DRIVE", + "confidence": 1.0 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374266357, + "lngE7": -1221431274, + "accuracyMeters": 69, + "timestamp": "2013-05-30T22:40:52.141Z" + }, { + "latE7": 374251175, + "lngE7": -1221484909, + "accuracyMeters": 59, + "timestamp": "2013-05-30T22:41:59.108Z" + }, { + "latE7": 374210167, + "lngE7": -1221565094, + "accuracyMeters": 37, + "timestamp": "2013-05-30T22:43:39.300Z" + }, { + "latE7": 374212837, + "lngE7": -1221489563, + "accuracyMeters": 43, + "timestamp": "2013-05-30T22:51:55.364Z" + }, { + "latE7": 374277420, + "lngE7": -1221436615, + "accuracyMeters": 45, + "timestamp": "2013-05-30T22:55:26.010Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.85014 + }, + "duration": { + "startTimestamp": "2013-05-30T22:57:24.727Z", + "endTimestamp": "2013-05-31T14:34:29.797Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374280494, + "centerLngE7": -1221398798, + "visitConfidence": 92, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.058510758 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.013538767 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.009143938 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.0034289237 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.003256861 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0024962313 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.0020503402 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0020390449 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.0020293256 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-31T14:34:29.797Z", + "endTimestamp": "2013-05-31T14:38:07.573Z" + }, + "distance": 240, + "confidence": "LOW", + "activities": [{ + "activityType": "WALKING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "IN_VEHICLE", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374278297, + "lngE7": -1221402893 + }, { + "latE7": 374274101, + "lngE7": -1221398162 + }], + "source": "BACKFILLED", + "distanceMeters": 79.94657784822408, + "travelMode": "WALK", + "confidence": 0.8815986790702666 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "activitySegment": { + "startLocation": { + }, + "endLocation": { + }, + "duration": { + "startTimestamp": "2013-05-31T14:38:07.573Z", + "endTimestamp": "2013-05-31T14:49:18.856Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "FLYING", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374274177, + "lngE7": -1221399841 + }, { + "latE7": 374861907, + "lngE7": -1221473846 + }], + "source": "BACKFILLED", + "distanceMeters": 9354.719395404194, + "travelMode": "DRIVE", + "confidence": 0.9460291771801353 + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 77.35704 + }, + "duration": { + "startTimestamp": "2013-05-31T14:49:18.856Z", + "endTimestamp": "2013-05-31T15:07:55.210Z" + }, + "placeConfidence": "MEDIUM_CONFIDENCE", + "centerLatE7": 374857593, + "centerLngE7": -1221470100, + "visitConfidence": 76, + "otherCandidateLocations": [{ + "latitudeE7": 374858048, + "longitudeE7": -1221480233, + "placeId": "ChIJm2logZa8j4AR_wZSvZPaGj4", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 13.555455 + }, { + "latitudeE7": 374945295, + "longitudeE7": -1220734968, + "placeId": "ChIJneSLzs-9j4ARlOjYqHKYGV4", + "address": "2 Marshlands Rd, Fremont, CA 94555, USA", + "name": "Don Edwards San Francisco Bay National Wildlife Refuge", + "locationConfidence": 7.0316186 + }, { + "latitudeE7": 374841127, + "longitudeE7": -1221482444, + "placeId": "ChIJDUW0Gpe8j4ARDj1Szj4sg-Y", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 2.0089135 + }, { + "latitudeE7": 374841002, + "longitudeE7": -1221482519, + "placeId": "ChIJVzfhGpe8j4AR0hndFo_hixs", + "address": "MPK 15, 1 Hacker Way, Menlo Park, CA 94025, USA", + "name": "Alan K Newman DDS PC", + "locationConfidence": 0.03839823 + }, { + "latitudeE7": 374833871, + "longitudeE7": -1221494961, + "placeId": "ChIJ26E_pJe8j4ARLtY6ZnbdT2Q", + "locationConfidence": 0.008573283 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "simplifiedRawPath": { + "points": [{ + "latE7": 374859028, + "lngE7": -1221466021, + "accuracyMeters": 36, + "timestamp": "2013-05-31T14:50:44.110Z" + }, { + "latE7": 374858715, + "lngE7": -1221473081, + "accuracyMeters": 43, + "timestamp": "2013-05-31T14:55:09.280Z" + }], + "source": "BACKFILLED", + "distanceMeters": 62.39012718225053 + }, + "locationConfidence": 70, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }, { + "activitySegment": { + "startLocation": { + "latitudeE7": 374850711, + "longitudeE7": -1221474242, + "placeId": "ChIJGcSN3pa8j4ARpeP0i0Oel2Q", + "address": "1 Hacker Way, Menlo Park, California 94025, United States", + "name": "Facebook", + "locationConfidence": 77.35704 + }, + "endLocation": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.72459 + }, + "duration": { + "startTimestamp": "2013-05-31T15:07:55.210Z", + "endTimestamp": "2013-05-31T15:36:46.094Z" + }, + "confidence": "MEDIUM", + "activities": [{ + "activityType": "IN_VEHICLE", + "probability": 0.0 + }, { + "activityType": "CYCLING", + "probability": 0.0 + }, { + "activityType": "WALKING", + "probability": 0.0 + }], + "waypointPath": { + "waypoints": [{ + "latE7": 374862403, + "lngE7": -1221472244 + }, { + "latE7": 374866905, + "lngE7": -1221425094 + }, { + "latE7": 374550819, + "lngE7": -1221637954 + }, { + "latE7": 374493370, + "lngE7": -1221602478 + }, { + "latE7": 374376335, + "lngE7": -1221599578 + }, { + "latE7": 374283828, + "lngE7": -1221395263 + }], + "source": "BACKFILLED", + "distanceMeters": 10363.638438764856, + "travelMode": "DRIVE", + "confidence": 0.8192409496033403 + }, + "simplifiedRawPath": { + "points": [{ + "latE7": 374866867, + "lngE7": -1221425018, + "accuracyMeters": 3, + "timestamp": "2013-05-31T15:10:22.698Z" + }, { + "latE7": 374550896, + "lngE7": -1221636734, + "accuracyMeters": 19, + "timestamp": "2013-05-31T15:24:58.978Z" + }, { + "latE7": 374494400, + "lngE7": -1221601486, + "accuracyMeters": 31, + "timestamp": "2013-05-31T15:27:57.542Z" + }, { + "latE7": 374376945, + "lngE7": -1221598587, + "accuracyMeters": 36, + "timestamp": "2013-05-31T15:33:45.967Z" + }] + }, + "editConfirmationStatus": "NOT_CONFIRMED" + } + }, { + "placeVisit": { + "location": { + "latitudeE7": 374277169, + "longitudeE7": -1221401737, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "134-248 Oregon Expy, Palo Alto, California 94306, United States", + "locationConfidence": 99.72459 + }, + "duration": { + "startTimestamp": "2013-05-31T15:36:46.094Z", + "endTimestamp": "2013-06-01T16:06:54.349Z" + }, + "placeConfidence": "HIGH_CONFIDENCE", + "centerLatE7": 374280466, + "centerLngE7": -1221398937, + "visitConfidence": 96, + "otherCandidateLocations": [{ + "latitudeE7": 374277248, + "longitudeE7": -1221403860, + "placeId": "ChIJi8yMsvq6j4ARyxrV3iyuvI4", + "address": "2583 Park Blvd, Palo Alto, CA 94306, USA", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.104555786 + }, { + "latitudeE7": 374267490, + "longitudeE7": -1221407290, + "placeId": "ChIJm8EK_e-6j4ARgml6h3Srj60", + "address": "200 Sheridan Ave #102, Palo Alto, CA 94306, USA", + "name": "Caffe Riace", + "locationConfidence": 0.024873346 + }, { + "latitudeE7": 374296710, + "longitudeE7": -1221410736, + "placeId": "ChIJOZtu0eS6j4ARpqhCqWyAtV0", + "address": "Palo Alto, CA 94301, USA", + "name": "Jerry Bowden Park", + "locationConfidence": 0.017310992 + }, { + "latitudeE7": 374281107, + "longitudeE7": -1221414007, + "placeId": "ChIJrSNqOOW6j4ARwZbPoVUl3-g", + "address": "150 Grant Ave, Palo Alto, CA 94306, USA", + "name": "Cask", + "locationConfidence": 0.006256428 + }, { + "latitudeE7": 374288350, + "longitudeE7": -1221427030, + "placeId": "ChIJecox_eS6j4ARudFsOSGBVcY", + "locationConfidence": 0.0061082696 + }, { + "latitudeE7": 374273799, + "longitudeE7": -1221408514, + "placeId": "ChIJfxN1VOW6j4ARj3a6gutrmH0", + "address": "2635 Park Blvd, Palo Alto, CA 94306, USA", + "name": "Fiber Internet Center", + "locationConfidence": 0.0045126737 + }, { + "latitudeE7": 374288998, + "longitudeE7": -1221427158, + "placeId": "ChIJo9LQ_OS6j4ARTgsKf5vnFYc", + "semanticType": "TYPE_SEARCHED_ADDRESS", + "locationConfidence": 0.004112359 + }, { + "latitudeE7": 374261557, + "longitudeE7": -1221411791, + "placeId": "ChIJ8xJN5e-6j4AR7WOoOj6iKzk", + "address": "260 Sheridan Ave, Palo Alto, CA 94306, USA", + "name": "Tesla Statue", + "locationConfidence": 0.0037618363 + }, { + "latitudeE7": 374274873, + "longitudeE7": -1221409366, + "placeId": "ChIJBZORUeW6j4ARGIVXH68WZ2w", + "name": "Ductus Inc", + "locationConfidence": 0.00356226 + }], + "editConfirmationStatus": "NOT_CONFIRMED", + "locationConfidence": 88, + "placeVisitType": "SINGLE_PLACE", + "placeVisitImportance": "MAIN" + } + }] +} \ No newline at end of file diff --git a/reference/googletakeout/googletakeout.gpx b/reference/googletakeout/googletakeout.gpx new file mode 100644 index 000000000..a3ff36833 --- /dev/null +++ b/reference/googletakeout/googletakeout.gpx @@ -0,0 +1,2770 @@ + + + + + + + Facebook + 1 Hacker Way, Menlo Park, California 94025, United States + 1 Hacker Way, Menlo Park, California 94025, United States + + + + Facebook + 1 Hacker Way, Menlo Park, California 94025, United States + 1 Hacker Way, Menlo Park, California 94025, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + The UPS Store + 405 El Camino Real, Menlo Park, California 94025, United States + 405 El Camino Real, Menlo Park, California 94025, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + California's Great America + 4701 Great America Parkway, Santa Clara, California 95054, United States + 4701 Great America Parkway, Santa Clara, California 95054, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Safeway + 645 San Antonio Road, Mountain View, California 94040, United States + 645 San Antonio Road, Mountain View, California 94040, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Facebook + 1 Hacker Way, Menlo Park, California 94025, United States + 1 Hacker Way, Menlo Park, California 94025, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Mollie Stone's Markets + 164 California Ave, Palo Alto, California 94306-1621, United States + 164 California Ave, Palo Alto, California 94306-1621, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Escondido Elementary School + 890 Escondido Road, Stanford, California 94305-7101, United States + 890 Escondido Road, Stanford, California 94305-7101, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Mollie Stone's Markets + 164 California Ave, Palo Alto, California 94306-1621, United States + 164 California Ave, Palo Alto, California 94306-1621, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Jared + 685 San Antonio Road Suite 19, Mountain View, California 94040, United States + 685 San Antonio Road Suite 19, Mountain View, California 94040, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Facebook + 1 Hacker Way, Menlo Park, California 94025, United States + 1 Hacker Way, Menlo Park, California 94025, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Facebook + 1 Hacker Way, Menlo Park, California 94025, United States + 1 Hacker Way, Menlo Park, California 94025, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Stanford University + 450 Serra Mall, Stanford, California 94305, United States + 450 Serra Mall, Stanford, California 94305, United States + + + + LYFE Kitchen + 167 Hamilton Ave, Palo Alto, CA 94301, USA + 167 Hamilton Ave, Palo Alto, CA 94301, USA + + + + Trader Joe's + 855 El Camino Real, Palo Alto, California 94301, United States + 855 El Camino Real, Palo Alto, California 94301, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Joanie's Cafe + 405 California Avenue, Palo Alto, California 94306, United States + 405 California Avenue, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Safeway + 525 El Camino Real, Menlo Park, California 94025, United States + 525 El Camino Real, Menlo Park, California 94025, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 230 San Antonio Circle, Mountain View, California 94040-1276, United States + 230 San Antonio Circle, Mountain View, California 94040-1276, United States + 230 San Antonio Circle, Mountain View, California 94040-1276, United States + + + + Whole Foods Market + 4800 El Camino Real, Los Altos, California 94022, United States + 4800 El Camino Real, Los Altos, California 94022, United States + + + + Walmart + 600 Showers Drive, Mountain View, California 94040, United States + 600 Showers Drive, Mountain View, California 94040, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Facebook + 1 Hacker Way, Menlo Park, California 94025, United States + 1 Hacker Way, Menlo Park, California 94025, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Walmart + 600 Showers Drive, Mountain View, California 94040, United States + 600 Showers Drive, Mountain View, California 94040, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Facebook + 1 Hacker Way, Menlo Park, California 94025, United States + 1 Hacker Way, Menlo Park, California 94025, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Sprouts Farmers Market + 630 San Antonio Road, Mountain View, California 94040, United States + 630 San Antonio Road, Mountain View, California 94040, United States + + + + Palo Verde Elementary School + 3450 Louis Road, Palo Alto, California 94303-4403, United States + 3450 Louis Road, Palo Alto, California 94303-4403, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + REI + 2450 Charleston Road, Mountain View, California 94043-1622, United States + 2450 Charleston Road, Mountain View, California 94043-1622, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + 134-248 Oregon Expy, Palo Alto, California 94306, United States + + + + Palo Verde Elementary School + 3450 Louis Road, Palo Alto, California 94303-4403, United States + 3450 Louis Road, Palo Alto, California 94303-4403, United States + + + + 5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States + 5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States + 5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States + + + + Galaxy Sparks IMAX Luxury+ Theatre + 1170 Scheels Dr, Sparks, Nevada 89434, United States + 1170 Scheels Dr, Sparks, Nevada 89434, United States + + + + 5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States + 5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States + 5285 Santa Anita Drive, Sparks, Nevada 89436-0803, United States + + + + SCHEELS + 1200 Scheels Drive, Sparks, Nevada 89434, United States + 1200 Scheels Drive, Sparks, Nevada 89434, United States + + + + Winnemucca Convention & Visitors Center + 50 W Winnemucca Blvd # 1, Winnemucca, NV 89445-3174, United States + 50 W Winnemucca Blvd # 1, Winnemucca, NV 89445-3174, United States + + + + Harmons Grocery - City Creek + 135 East 100 South, Salt Lake City, Utah 84111, United States + 135 East 100 South, Salt Lake City, Utah 84111, United States + + + + O'Connell Middle School + 1275 S Teller St, Lakewood, CO 80232, USA + 1275 S Teller St, Lakewood, CO 80232, USA + + + + Lakewood Link Recreation Center + 1295 S Reed St, Lakewood, Colorado 80232-5520, United States + 1295 S Reed St, Lakewood, Colorado 80232-5520, United States + + + + Cherry Creek State Park + 4201 South Parker Road, Aurora, Colorado 80014-4203, United States + 4201 South Parker Road, Aurora, Colorado 80014-4203, United States + + + + Treads Bicycle Outfitters + 16701 East Iliff Avenue, Aurora, Colorado 80013, United States + 16701 East Iliff Avenue, Aurora, Colorado 80013, United States + + + + Museum @ Black Hills Institute + 117 Main St, Hill City, SD 57745-5106, United States + 117 Main St, Hill City, SD 57745-5106, United States + + + + Coffee Cup Fuel Stop + 1001 S Western Ave, Hartford, South Dakota 57033-2012, United States + 1001 S Western Ave, Hartford, South Dakota 57033-2012, United States + + + + McDonald's + 1210 Timberlane Drive, Sauk Centre, Minnesota 56378, United States + 1210 Timberlane Drive, Sauk Centre, Minnesota 56378, United States + + + + Loaf 'N Jug + 1833 University Dr S, Fargo, ND 58103-4941, United States + 1833 University Dr S, Fargo, ND 58103-4941, United States + + + + Morris Husky + Anderson Street, Morris, Manitoba R0G 1K0, Canada + Anderson Street, Morris, Manitoba R0G 1K0, Canada + + + + The Marlborough Hotel + 331 Smith Street, Winnipeg, Manitoba R3B 2G9, Canada + 331 Smith Street, Winnipeg, Manitoba R3B 2G9, Canada + + + + Burton Cummings Theatre + 364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada + 364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada + + + + WPT096 + WPT096 + WPT096 + + + + Regal Beagle Pub + 331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada + 331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada + + + + Centennial Concert Hall + 555 Main Street, Winnipeg, MB R3B 1C3, Canada + 555 Main Street, Winnipeg, MB R3B 1C3, Canada + + + + Shaw Park + 1 Portage Avenue East, Winnipeg, Manitoba R3B 0Y3, Canada + 1 Portage Avenue East, Winnipeg, Manitoba R3B 0Y3, Canada + + + + Fort Gibraltar + 866 Rue Saint Joseph, Winnipeg, Manitoba R2H 0G4, Canada + 866 Rue Saint Joseph, Winnipeg, Manitoba R2H 0G4, Canada + + + + Le Garage + 166 Provencher Boulevard, Winnipeg, Manitoba R2H 1Z2, Canada + 166 Provencher Boulevard, Winnipeg, Manitoba R2H 1Z2, Canada + + + + Burton Cummings Theatre + 364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada + 364 Smith Street, Winnipeg, Manitoba R3B 2H2, Canada + + + + Winnipeg International Writers Festival + 100 Arthur St, Winnipeg, MB R3B 1H3, Canada + 100 Arthur St, Winnipeg, MB R3B 1H3, Canada + + + + Hermanos South American Steakhouse + 179 Bannatyne Avenue, Winnipeg, Manitoba R3B 0R5, Canada + 179 Bannatyne Avenue, Winnipeg, Manitoba R3B 0R5, Canada + + + + Regal Beagle Pub + 331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada + 331 Smith Street, Winnipeg, Manitoba R3B 2H6, Canada + + + + The Original Pancake House + 1 Forks Market Road, Winnipeg, Manitoba R3C 4L9, Canada + 1 Forks Market Road, Winnipeg, Manitoba R3C 4L9, Canada + + + + Real Canadian Superstore + 3193 Portage Avenue, Winnipeg, Manitoba R3K 0W4, Canada + 3193 Portage Avenue, Winnipeg, Manitoba R3K 0W4, Canada + + + + Whirlpool Lake Campground + Division No. 17, Unorganized, Manitoba R0J 2H0, Canada + Division No. 17, Unorganized, Manitoba R0J 2H0, Canada + + + + Whirlpool Lake Campground + Division No. 17, Unorganized, Manitoba R0J 2H0, Canada + Division No. 17, Unorganized, Manitoba R0J 2H0, Canada + + + + Mooswa Resort + Mooswa Dr, Onanole, Manitoba R0J 1N0, Canada + Mooswa Dr, Onanole, Manitoba R0J 1N0, Canada + + + + The Russell Inn + MB-16, Manitoba, Canada + MB-16, Manitoba, Canada + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unknown Activity Type + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unknown Activity Type + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unknown Activity Type + + + + + + + + + + + + + + + + + + + + + + + Unknown Activity Type + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Unknown Activity Type + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/reference/help.txt b/reference/help.txt index 18edf00d5..4aeb2c4e6 100644 --- a/reference/help.txt +++ b/reference/help.txt @@ -180,6 +180,7 @@ File Types (-i and -o options): max_position_point Retain at most this number of position points (0 rotate_colors Rotate colors for tracks and routes (default autom prec Precision of coordinates, number of decimals + googletakeout Google Takeout Location History land_air_sea GPS Tracking Key Pro text snlen Max synthesized shortname length snwhite (0/1) Allow whitespace synth. shortnames diff --git a/testo b/testo index b5e38ab35..fc5550162 100755 --- a/testo +++ b/testo @@ -16,6 +16,7 @@ do case "$1" in -p) PNAME=$2; shift 2;; -v) VALGRIND=$2; shift 2;; + -d) DEBUG=1; shift 1;; *) break;; esac done @@ -34,7 +35,11 @@ XMLWF=xmlwf TMPDIR=${GBTEMP:-/tmp}/gpsbabel.$$ mkdir -p $TMPDIR -trap "rm -fr $TMPDIR" 0 1 2 3 15 +if test -z "$DEBUG"; then + trap "rm -fr $TMPDIR" 0 1 2 3 15 +else + echo "Preserving tempdir TMPDIR because DEBUG is set" +fi bincompare() { diff --git a/testo.d/googletakeout.test b/testo.d/googletakeout.test new file mode 100644 index 000000000..ab914a03b --- /dev/null +++ b/testo.d/googletakeout.test @@ -0,0 +1,8 @@ +rm -f ${TMPDIR}/googletakeout.gpx +gpsbabel \ + -i googletakeout \ + -f ${REFERENCE}/googletakeout \ + -o gpx \ + -F ${TMPDIR}/googletakeout.gpx + +compare "${TMPDIR}/googletakeout.gpx" "${REFERENCE}/googletakeout/googletakeout.gpx" diff --git a/vecs.cc b/vecs.cc index 5665faf86..150f79a30 100644 --- a/vecs.cc +++ b/vecs.cc @@ -69,6 +69,7 @@ #include "text.h" // for TextFormat #include "unicsv.h" // for UnicsvFormat #include "xcsv.h" // for XcsvStyle, XcsvFormat +#include "googletakeout.h" // for GoogleTakeoutFormat extern ff_vecs_t geo_vecs; @@ -162,6 +163,7 @@ struct Vecs::Impl { GeoJsonFormat geojson_fmt; GlobalsatSportFormat globalsat_sport_fmt; QstarzBL1000Format qstarz_bl_1000_fmt; + GoogleTakeoutFormat google_timeline_fmt; #endif // MAXIMAL_ENABLED const QVector vec_list { @@ -491,6 +493,13 @@ struct Vecs::Impl { "Qstarz BL-1000", nullptr, nullptr, + }, + { + &google_timeline_fmt, + "googletakeout", + "Google Takeout Location History", + "json", + nullptr, } #endif // MAXIMAL_ENABLED }; diff --git a/xmldoc/formats/googletakeout.xml b/xmldoc/formats/googletakeout.xml new file mode 100644 index 000000000..0ad85f3e7 --- /dev/null +++ b/xmldoc/formats/googletakeout.xml @@ -0,0 +1,69 @@ + + Google gives you two options to download your location history: + In Google Maps, you can go into your Timeline and download your location + history a day at a time as KML files. Or, in Google Takeout, you can + download all of your location history all at once as a ZIP of JSON files, + one for each month. + + + + The "googletakeout" GPSBabel format will process the location history + JSON files. It can operate on individual JSON files, the folders in the + ZIP that contain a year's worth of data, or the entire location history + at once. + + + + There is no official documentation from Google for this format, however, + a volunteer is maintaining a schema at + + locationhistoryformat.com + . + + + + To obtain your Google Takeout History: + + + Go to + + takeout.google.com + + + Click on "Deselect all" + + Scroll down to "Location History" and check the box + + + Scroll to the bottom of the page and click on "Next step" + + Click on "Create export" + + In a little while, you will receive an email to download your location + history, which will be one or more zipfiles. Unzip everything into the same + folder. Your history will be in the folder + "Takeout/Location History/Semantic Location History" within this folder. + + + + Convert entire location history to a single GPX file + + gpsbabel -i googletakeout -f "Semantic Location History" -o gpx -F all.gpx + + + + + Convert a single years' location history to GPX + + gpsbabel -i googletakeout -f "Semantic Location History/2022" -o gpx -F 2022.gpx + + + + + Convert a single months' location history to GPX + + gpsbabel -i googletakeout -f "Semantic Location History/2023/2023_MARCH.json" -o gpx -F 2023-03.gpx + + -- 2.30.2